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