Bug 27846: modules and modules/acqui folders
[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
16 <nav aria-label="Breadcrumb" class="breadcrumb">
17     <ol>
18         <li>
19             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
20         </li>
21         <li>
22             <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisition</a>
23         </li>
24         <li>
25             <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid | uri %]">[% booksellername | html %]</a>
26         </li>
27         <li>
28             <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basketno | uri %]">Basket [% basketname | html %] ([% basketno | html %])</a>
29         </li>
30         <li>
31             <a href="#" aria-current="page">
32                 Change order [% IF (type == "vendor") %]vendor[% ELSE %]internal[% END %] note
33             </a>
34         </li>
35     </ol>
36 </nav>
37
38 <div class="main container-fluid">
39     <div class="row">
40         <div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
41
42       [% IF (type == "vendor") %]
43           <h1>Change order vendor note (order no. [% ordernumber | html %])</h1>
44       [% ELSE %]
45           <h1>Change order internal note (order no. [% ordernumber | html %])</h1>
46       [% END %]
47       <form action="/cgi-bin/koha/acqui/modordernotes.pl" method="post">
48         <fieldset class="brief">
49           <label for="ordernotes">Note:</label>
50           <textarea id="ordernotes" name="ordernotes" rows="3" cols="30" class="focus">[% ordernotes | html %]</textarea>
51         </fieldset>
52         <input type="hidden" name="referrer" value="[% referrer | html %]" />
53         <input type="hidden" name="ordernumber" value="[% ordernumber | html %]" />
54         <input type="hidden" name="op" value="save" />
55         <input type="hidden" name="type" value="[% type | html %]" />
56         <fieldset class="action">
57           <input type="submit" value="Save" />
58           <a class="cancel" href="[% referrer | url %]">Cancel</a>
59         </fieldset>
60       </form>
61   </div>
62 </div>
63
64 [% INCLUDE 'intranet-bottom.inc' %]