1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/resources/views/portal/ninja2020/components/statement.blade.php

34 lines
1.5 KiB
PHP
Raw Normal View History

2021-09-14 20:57:33 +02:00
<div>
2021-09-14 21:10:56 +02:00
<div class="flex flex-col md:flex-row md:items-center">
<label for="status" class="flex items-center mr-4">
<span class="mr-2">{{ ctrans('texts.status') }}</span>
<select class="input">
<option value="all">{{ ctrans('texts.all') }}</option>
<option value="unpaid">{{ ctrans('texts.unpaid') }}</option>
<option value="paid">{{ ctrans('texts.paid') }}</option>
2021-09-14 20:57:33 +02:00
</select>
</label> <!-- End status dropdown -->
2021-09-14 21:10:56 +02:00
<div class="flex">
<label for="from" class="block w-full flex items-center mr-4">
<span class="mr-2">{{ ctrans('texts.from') }}:</span>
<input type="date" class="input w-full">
2021-09-14 20:57:33 +02:00
</label>
2021-09-14 21:10:56 +02:00
<label for="to" class="block w-full flex items-center mr-4">
<span class="mr-2">{{ ctrans('texts.to') }}:</span>
<input type="date" class="input w-full">
2021-09-14 20:57:33 +02:00
</label>
</div> <!-- End date range -->
2021-09-14 21:10:56 +02:00
<label for="show_payments" class="block flex items-center mr-4 mt-4 md:mt-0">
2021-09-14 20:57:33 +02:00
<input type="checkbox" class="form-checkbox">
2021-09-14 21:10:56 +02:00
<span class="ml-2">{{ ctrans('texts.show_payments') }}</span>
2021-09-14 20:57:33 +02:00
</label> <!-- End show payments checkbox -->
2021-09-14 21:10:56 +02:00
<label for="show_aging" class="block flex items-center">
2021-09-14 20:57:33 +02:00
<input type="checkbox" class="form-checkbox">
2021-09-14 21:10:56 +02:00
<span class="ml-2">{{ ctrans('texts.show_aging') }}</span>
2021-09-14 20:57:33 +02:00
</label> <!-- End show aging checkbox -->
</div>
</div>