Bug 21454: Remove html filter for Price filtered variables
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / addorder.tt
1 [% INCLUDE "doc-head-open.inc" %]
2 <title>Koha &rsaquo; Acquisition &rsaquo; Add order</title>
3 [% INCLUDE "doc-head-close.inc" %]
4 </head>
5
6 <body id="acq_addorder" class="acq">
7 [% INCLUDE "header.inc" %]
8
9     <div class="container-fluid">
10       [% IF (not_enough_budget) %]
11         <form action="/cgi-bin/koha/acqui/addorder.pl" method="post">
12           [% FOREACH var IN vars_loop %]
13             [% FOREACH val IN var.values %]
14               <input type="hidden" name="[% var.name | html %]" value="[% val | html %]" />
15             [% END %]
16           [% END %]
17           <input type="hidden" name="confirm_budget_exceeding" value="1" />
18           <div class="dialog alert">
19             [% IF (budget_exceeded) %]
20               <p>Warning! Order total amount exceeds allowed budget.</p>
21             [% END %]
22             [% IF (encumbrance_exceeded) %]
23               <p>Warning! You will exceed [% encumbrance | html %]% of your fund.</p>
24             [% END %]
25             [% IF (expenditure_exceeded) %]
26               <p>Warning! You will exceed maximum limit ([% expenditure | html %][% IF (currency) %] [% currency | html %][% END %]) for your fund.</p>
27             [% END %]
28             <p>Do you want to confirm this order?</p>
29             <button type="submit" class="approve"><i class="fa fa-fw fa-check"></i> Yes, I confirm</button>
30             <button type="button" class="deny" onclick="window.location.href = '[% referer | html %]'"><i class="fa fa-fw fa-remove"></i> No, I don't confirm</button>
31           </div>
32         </form>
33       [% END %]
34
35 [% INCLUDE "intranet-bottom.inc" %]