f79e805910083d1a7a8ed40dd10e99021bbc0810
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / showorder.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Order details &rsaquo; Acquisitions &rsaquo; Koha</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         <h1>Order details</h1>
8         [% IF order %]
9             <fieldset class="rows">
10                 <ol>
11                     <li>
12                         <span class="label">Creation date: </span>
13                         [% order.entrydate | html %]
14                     </li>
15                     <li>
16                         <span class="label">Ordered by: </span>
17                         [% INCLUDE 'patron-title.inc' patron = creator %]
18                     </li>
19                     <li>
20                         <span class="label">Claims count: </span>
21                         [% order.claims.count | html %]
22                     </li>
23                     <li>
24                         <span class="label">Last claim date: </span>
25                         [% order.claims.last.claimed_on | html %]
26                     </li>
27             </ol>
28           </fieldset>
29         [% ELSE %]
30             No order found
31         [% END %]
32     </div>
33 </body>
34 </html>