This patch updates acquisitions, suggestions, and ERM templates so that title tags can be more easily translated. To test, apply the patch and confirm that the following pages have the correct title tags: - Acquisitions -> Acquisitions home - Ordered - Spent - Vendors: Search, new, edit - Baskets: New, edit - New order - From an empty record - From an existing record - From existing orders (copy) - From a suggestion - From a subscription - From an external source - From a staged file - Basket groups - Receive shipments - Uncertain prices - Late orders - Suggestions - Invoices - Invoice details - Invoice files - Receive orders - Transfer order - Cancel order - EDIFACT messages - Order search - ERM Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
40 lines
1.3 KiB
Text
40 lines
1.3 KiB
Text
[% USE raw %]
|
|
[% PROCESS 'i18n.inc' %]
|
|
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>[% FILTER collapse %]
|
|
[% t("Order details") | html %] ›
|
|
[% t("Acquisitions") | html %] ›
|
|
[% t("Koha") | html %]
|
|
[% END %]</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
</head>
|
|
<body id="acq_showorder" class="acq">
|
|
<div id="main">
|
|
<h1>Order details</h1>
|
|
[% IF order %]
|
|
<fieldset class="rows">
|
|
<ol>
|
|
<li>
|
|
<span class="label">Creation date: </span>
|
|
[% order.entrydate | html %]
|
|
</li>
|
|
<li>
|
|
<span class="label">Ordered by: </span>
|
|
[% INCLUDE 'patron-title.inc' patron = creator %]
|
|
</li>
|
|
<li>
|
|
<span class="label">Claims count: </span>
|
|
[% order.claims.count | html %]
|
|
</li>
|
|
<li>
|
|
<span class="label">Last claim date: </span>
|
|
[% order.claims.last.claimed_on | html %]
|
|
</li>
|
|
</ol>
|
|
</fieldset>
|
|
[% ELSE %]
|
|
No order found
|
|
[% END %]
|
|
</div>
|
|
</body>
|
|
</html>
|