Bug 30772: Terminology: Replace instances of "reserve" with "hold"
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / modordernotes.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>[%- IF (type == "vendor") -%]
3     Change order vendor note
4 [%- ELSE -%]
5     Change order internal note
6 [%- END -%] &rsaquo; Acquisition &rsaquo; Koha
7 </title>
8 [% INCLUDE 'doc-head-close.inc' %]
9 </head>
10
11 <body id="acq_modordernotes" class="acq">
12 [% INCLUDE 'header.inc' %]
13
14
15 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
16     <ol>
17         <li>
18             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
19         </li>
20         <li>
21             <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisition</a>
22         </li>
23         <li>
24             <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid | uri %]">[% booksellername | html %]</a>
25         </li>
26         <li>
27             <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basketno | uri %]">Basket [% basketname | html %] ([% basketno | html %])</a>
28         </li>
29         <li>
30             <a href="#" aria-current="page">
31                 Change order [% IF (type == "vendor") %]vendor[% ELSE %]internal[% END %] note
32             </a>
33         </li>
34     </ol>
35 </nav>
36
37 <div class="main container-fluid">
38     <div class="row">
39         <div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
40
41       [% IF (type == "vendor") %]
42           <h1>Change order vendor note (order no. [% ordernumber | html %])</h1>
43       [% ELSE %]
44           <h1>Change order internal note (order no. [% ordernumber | html %])</h1>
45       [% END %]
46       <form action="/cgi-bin/koha/acqui/modordernotes.pl" method="post">
47         <fieldset class="brief">
48           <label for="ordernotes">Note:</label>
49           <textarea id="ordernotes" name="ordernotes" rows="3" cols="30" class="focus">[% ordernotes | html %]</textarea>
50         </fieldset>
51         <input type="hidden" name="referrer" value="[% referrer | html %]" />
52         <input type="hidden" name="ordernumber" value="[% ordernumber | html %]" />
53         <input type="hidden" name="op" value="save" />
54         <input type="hidden" name="type" value="[% type | html %]" />
55         <fieldset class="action">
56           <input type="submit" value="Save" />
57           <a class="cancel" href="[% referrer | url %]">Cancel</a>
58         </fieldset>
59       </form>
60   </div>
61 </div>
62
63 [% INCLUDE 'intranet-bottom.inc' %]