Bug 10904: Limit patron update request management by branch
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / modordernotes.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Acquisition &rsaquo;
3 [%- IF (type == "vendor") -%]
4     Change order vendor note
5 [%- ELSE -%]
6     Change order internal note
7 [%- END -%]
8 </title>
9 [% INCLUDE 'doc-head-close.inc' %]
10 </head>
11
12 <body id="acq_modordernotes" class="acq">
13 [% INCLUDE 'header.inc' %]
14
15 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisition</a> &rsaquo; <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername|html %]</a> &rsaquo; <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basketno %]">Basket [% basketname|html %] ([% basketno %])</a> &rsaquo; Change order [% IF (type == "vendor") %]vendor[% ELSE %]internal[% END %] note</div>
16
17 <div id="doc" class="yui-t7">
18
19 <div id="bd">
20   <div id="yui-main">
21       [% IF (type == "vendor") %]
22           <h1>Change order vendor note (order no. [% ordernumber %])</h1>
23       [% ELSE %]
24           <h1>Change order internal note (order no. [% ordernumber %])</h1>
25       [% END %]
26       <form action="/cgi-bin/koha/acqui/modordernotes.pl" method="post">
27         <fieldset class="brief">
28           <label for="ordernotes">Note:</label>
29           <textarea id="ordernotes" name="ordernotes" rows="3" cols="30" class="focus">[% ordernotes %]</textarea>
30         </fieldset>
31         <input type="hidden" name="referrer" value="[% referrer %]" />
32         <input type="hidden" name="ordernumber" value="[% ordernumber %]" />
33         <input type="hidden" name="op" value="save" />
34         <input type="hidden" name="type" value="[% type %]" />
35         <fieldset class="action">
36           <input type="submit" value="Save" />
37           <a class="cancel" href="[% referrer %]">Cancel</a>
38         </fieldset>
39       </form>
40   </div>
41 </div>
42 [% INCLUDE 'intranet-bottom.inc' %]