Bug 24161: Keep tracks of late orders claims
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / showorder.tt
blob8d026afdcd8731211cc4fb4b47b3ffaa0e5502d1
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Acquisitions &rsaquo; Order details</title>
3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4 </head>
5 <body id="acq_showorder" class="acq">
6     <div id="main">
7         [% IF order %]
8             <fieldset class="rows">
9                 <ol>
10                     <li>
11                         <span class="label">Creation date: </span>
12                         [% order.entrydate | html %]
13                     </li>
14                     <li>
15                         <span class="label">Ordered by: </span>
16                         [% INCLUDE 'patron-title.inc' patron = creator %]
17                     </li>
18                     <li>
19                         <span class="label">Claims count: </span>
20                         [% order.claims.count | html %]
21                     </li>
22                     <li>
23                         <span class="label">Last claim date: </span>
24                         [% order.claims.last.claimed_on | html %]
25                     </li>
26             </ol>
27           </fieldset>
28         [% ELSE %]
29             No order found
30         [% END %]
31     </div>
32 </body>
33 </html>