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