Bug 15348: (follow-up) Fix sorting of estimated delivery date on basket summary page
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / moddeliverydate.tt
1 [% USE KohaDates %]
2 [% SET footerjs = 1 %]
3 [% INCLUDE 'doc-head-open.inc' %]
4 <title>Change estimated delivery date &rsaquo; Acquisitions &rsaquo; Koha</title>
5 [% INCLUDE 'doc-head-close.inc' %]
6 </head>
7
8 <body id="acq_moddeliverydate" class="acq">
9 [% INCLUDE 'header.inc' %]
10
11 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
12     <ol>
13         <li>
14             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
15         </li>
16         <li>
17             <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisition</a>
18         </li>
19         <li>
20             <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid | uri %]">[% booksellername | html %]</a>
21         </li>
22         <li>
23             <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basketno | uri %]">Basket [% basketname | html %] ([% basketno | html %])</a>
24         </li>
25         <li>
26             <a href="#" aria-current="page">Change estimated delivery date</a>
27         </li>
28     </ol>
29 </nav>
30
31 <div class="main container-fluid">
32     <div class="row">
33         <div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
34
35       <h1>Change estimated delivery date</h1>
36       <form action="/cgi-bin/koha/acqui/moddeliverydate.pl" method="post">
37         <fieldset class="brief">
38           <label for="estimated_delivery_date">Estimated delivery date:</label>
39           <input type="text" id="estimated_delivery_date" size="10" name="estimated_delivery_date" class="flatpickr" value="[% estimated_delivery_date | $KohaDates %]"/>
40           <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
41         </fieldset>
42         <input type="hidden" name="referrer" value="[% referrer | html %]" />
43         <input type="hidden" name="ordernumber" value="[% ordernumber | html %]" />
44         <input type="hidden" name="op" value="save" />
45         <fieldset class="action">
46           <input type="submit" value="Save" />
47           <a class="cancel" href="[% referrer | url %]">Cancel</a>
48         </fieldset>
49       </form>
50   </div>
51 </div>
52
53 [% MACRO jsinclude BLOCK %]
54     [% INCLUDE 'calendar.inc' %]
55 [% END %]
56
57 [% INCLUDE 'intranet-bottom.inc' %]