Bug 13618: Remove html filters at the intranet
[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 id="doc3" class="yui-t7">
10
11 <div id="bd">
12   <div id="yui-main">
13     <div class="yui-b">
14       [% IF (not_enough_budget) %]
15         <form action="/cgi-bin/koha/acqui/addorder.pl" method="post">
16           [% FOREACH var IN vars_loop %]
17             [% FOREACH val IN var.values %]
18               <input type="hidden" name="[% var.name %]" value="[% val %]" />
19             [% END %]
20           [% END %]
21           <input type="hidden" name="confirm_budget_exceeding" value="1" />
22           <div class="dialog">
23             [% IF (budget_exceeded) %]
24               <p>Warning! Order total amount exceeds allowed budget.</p>
25             [% END %]
26             [% IF (encumbrance_exceeded) %]
27               <p>Warning! You will exceed [% encumbrance %]% of your fund.</p>
28             [% END %]
29             [% IF (expenditure_exceeded) %]
30               <p>Warning! You will exceed maximum limit ([% expenditure %][% IF (currency) %] [% currency %][% END %]) for your fund.</p>
31             [% END %]
32             <p>Do you want to confirm this order?</p>
33             <input type="submit" class="approve" value="Yes, I confirm" />
34             <input type="button" class="deny" value="No, I don't confirm" onclick="window.location.href = '[% referer %]'" />
35           </div>
36         </form>
37       [% END %]
38     </div>
39   </div>
40 </div>
41 [% INCLUDE "intranet-bottom.inc" %]