Layout: title Ausgabe normalisieren
[kivitendo-erp.git] / templates / webpages / sepa / bank_transfer_mark_as_closed_step1.html
1 [%- USE T8 %]
2 [% USE HTML %]
3 <h1>[% title %]</h1>
4
5  <form action="sepa.pl" method="post">
6   <p>
7    [%- IF vc == 'vendor' %]
8     [%- 'Do you really want to close the following SEPA exports? No payment will be recorded for bank transfers that haven\'t been marked as executed yet.' | $T8 %]
9    [%- ELSE %]
10     [%- 'Do you really want to close the following SEPA exports? No payment will be recorded for bank collections that haven\'t been marked as executed yet.' | $T8 %]
11    [%- END %]
12   </p>
13
14   <p>
15    [% 'SEPA exports:' | $T8 %]
16    [%- FOREACH id = OPEN_EXPORT_IDS %]
17     [%- UNLESS loop.first %], [%- END %]
18     <input type="hidden" name="open_export_ids[]" value="[% HTML.escape(id) %]">
19     <a href="sepa.pl?action=bank_transfer_edit&id=[% HTML.url(id) %]&vc=[% HTML.url(vc) %]">[% HTML.escape(id) %]</a>
20    [%- END %]
21   </p>
22
23   <p>
24    <input type="submit" class="submit" name="action_bank_transfer_mark_as_closed_step2" value="[% 'Mark as closed' | $T8 %]">
25    <input type="button" class="submit" value="[% 'Back' | $T8 %]" onclick="history.back()">
26   </p>
27
28   <input type="hidden" name="action" value="dispatcher">
29   <input type="hidden" name="vc" value="[%- HTML.escape(vc) %]">
30  </form>
31