Koha/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/showorder.tt
Wainui Witika-Park 559e64a5f2 Bug 26703: modules and modules/acqui folders
Swapped the order of the page titles to have the unique information first, i.e. the name of the specific page displays first, and the name of the website (e.g. Koha) displays at the end.

To test:
1) Apply patch
2) Ensure each of the files in the modules folder and the modules/acqui folder are swapped around to display the most unique information first, and the website name is at the end
3) Ensure the pages displayed on the Staff Client that correspond to
these files also display the changes

Sponsored-by: Catalyst IT
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Henry Bolshaw <bolshawh@parliament.uk>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2021-04-21 11:16:33 +02:00

33 lines
1.1 KiB
Text

[% INCLUDE 'doc-head-open.inc' %]
<title>Order details &rsaquo; Acquisitions &rsaquo; Koha</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body id="acq_showorder" class="acq">
<div id="main">
[% 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>