Bug 30952: Staff interface redesign (header)
[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 [% WRAPPER 'sub-header.inc' %]
16 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
17     <ol>
18         <li>
19             <a href="/cgi-bin/koha/mainpage.pl"><i class="fa fa-home"></i></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 [% END %]
38
39 <div class="main container-fluid">
40     <div class="row">
41         <div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
42
43       [% IF (type == "vendor") %]
44           <h1>Change order vendor note (order no. [% ordernumber | html %])</h1>
45       [% ELSE %]
46           <h1>Change order internal note (order no. [% ordernumber | html %])</h1>
47       [% END %]
48       <form action="/cgi-bin/koha/acqui/modordernotes.pl" method="post">
49         <fieldset class="brief">
50           <label for="ordernotes">Note:</label>
51           <textarea id="ordernotes" name="ordernotes" rows="3" cols="30" class="focus">[% ordernotes | html %]</textarea>
52         </fieldset>
53         <input type="hidden" name="referrer" value="[% referrer | html %]" />
54         <input type="hidden" name="ordernumber" value="[% ordernumber | html %]" />
55         <input type="hidden" name="op" value="save" />
56         <input type="hidden" name="type" value="[% type | html %]" />
57         <fieldset class="action">
58           <input type="submit" value="Save" />
59           <a class="cancel" href="[% referrer | url %]">Cancel</a>
60         </fieldset>
61       </form>
62   </div>
63 </div>
64
65 [% INCLUDE 'intranet-bottom.inc' %]