Langtext-Dialog: Größe prozentual zum Hauptfenster einstellbar pro Benutzer
[kivitendo-erp.git] / templates / webpages / acctranscorrections / delete_transaction_confirmation.html
1 [%- USE T8 %]
2 [% USE HTML %]
3 [% USE LxERP %]
4  <h1>[% title %]</h1>
5
6  <p>
7   [%- IF module == 'ar' %]
8   [%- LxERP.t8('Do you really want to delete AR transaction #1?', reference) | html %]
9   [%- ELSIF module == 'ap' %]
10   [%- LxERP.t8('Do you really want to delete AP transaction #1?', reference) | html %]
11   [%- ELSE %]
12   [%- LxERP.t8('Do you really want to delete GL transaction #1?', reference) | html %]
13   [%- END %]
14  </p>
15
16  <p>
17   <form method="post" action="acctranscorrections.pl">
18
19    <input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
20    <input type="hidden" name="trans_id" value="[% HTML.escape(trans_id) %]">
21    <input type="hidden" name="module" value="[% HTML.escape(module) %]">
22    <input type="hidden" name="reference" value="[% HTML.escape(reference) %]">
23
24    <input type="hidden" name="confirmation" value="1">
25    <input type="hidden" name="action" value="delete_transaction">
26
27    <input type="submit" value="[% 'Yes' | $T8 %]">
28    <input type="button" onclick="history.back()" value="[% 'No' | $T8 %]">
29   </form>
30  </p>