kivitendo/templates/webpages/reconciliation/search.html @ 922f961c
6a12a968 | Niclas Zimmermann | [%- USE T8 %]
|
||
[%- USE HTML %]
|
||||
[%- USE L %]
|
||||
[%- USE LxERP %]
|
||||
3810d658 | Moritz Bunkus | <form method="post" action="controller.pl" id="search_form">
|
||
6a12a968 | Niclas Zimmermann | |||
922f961c | Geoffrey Richardson | <table class="tbl-horizontal">
|
||
<caption>[% 'Choose bank account for reconciliation' | $T8 %]</caption>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>[% 'Bank account' | $T8 %]</th>
|
||||
<td>[% L.select_tag('filter.local_bank_account_id:number', SELF.BANK_ACCOUNTS, title_key='displayable_name', with_empty=0, class='wi-wide') %]</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>[% 'From' | $T8 %]</th>
|
||||
<td><span class="wi-date">[% L.date_tag('filter.fromdate:date::ge') %]</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>[% 'to (date)' | $T8 %]</th>
|
||||
<td><span class="wi-date">[% L.date_tag('filter.todate:date::le') %]</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>[% 'Cleared/uncleared only' | $T8 %]</th>
|
||||
<td>[% L.select_tag('filter.cleared:eq_ignore_empty', SELF.cleared, value_key = 'value', title_key = 'title', default = 'FALSE', class='wi-wide' ) %]</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>[% 'Show Stornos' | $T8 %]</th>
|
||||
<td>[% L.checkbox_tag('filter.show_stornos', value='1') %]</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
6a12a968 | Niclas Zimmermann | </table>
|
||
</form>
|