BankTransaction: vergessene Textübersetzung bei Buchung erstellen
[kivitendo-erp.git] / templates / webpages / bank_transactions / search.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 [%- USE L %]
4 [%- USE LxERP %]
5
6 [%- INCLUDE 'common/flash.html' %]
7
8  <form method="post" action="controller.pl" id="search_form">
9
10   <div class="listtop">[% 'Search bank transactions' | $T8 %]</div>
11   <p>
12     [%- IF INSTANCE_CONF.get_payments_changeable != '0' -%]
13       [% 'Cannot safely book imported bank transactions due to lax posting settings for payments' | $T8 %]
14     [%- ELSE -%]
15    <table>
16
17     <tr>
18      <th align="right">[% 'Bank account' | $T8 %]</th>
19      <td>[% L.select_tag('filter.bank_account', BANK_ACCOUNTS, default=bank_account, title_key='displayable_name', with_empty=0, style='width:450px') %]</td>
20     </tr>
21
22     <tr>
23      <th align="right">[% 'Transdate from' | $T8 %]</th>
24      <td>[% L.date_tag('filter.fromdate', filter.fromdate) %]</td>
25     </tr>
26
27     <tr>
28      <th align="right">[% 'to (date)' | $T8 %]</th>
29      <td>[% L.date_tag('filter.todate', filter.todate) %]</td>
30     </tr>
31    </table>
32   [%- END -%]
33   </p>
34  </form>