Koha/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/showorder.tt
Owen Leonard c2464231b0
Bug 33908: Improve translation of title tags: Acquisitions
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>
2023-09-01 11:07:41 -03:00

40 lines
1.3 KiB
Text

[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>[% FILTER collapse %]
[% t("Order details") | html %] &rsaquo;
[% t("Acquisitions") | html %] &rsaquo;
[% 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>