Koha/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/showorder.tt
Wainui Witika-Park aba4ce142b Bug 27631: acqui folder
Changed each of the pages in the acqui folder to have one <h1> tag
showing that describes the page, rather than the <h1> describing the
logo.

The hierarchy of heading tags may be broken in many pages, but this
will be dealt with in an additional bug.

To test:
1) Go to the Staff Client
2) Apply patch
3) Go to each of the pages in the acqui folder and check that they have
   an obvious and descriptive heading
4) Ensure that the heading in the page is <h1>

Sponsored-by: Catalyst IT

Signed-off-by: Owen Leonard <oleonard@myacpl.org>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
2022-04-20 09:03:38 -10:00

34 lines
1.2 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">
<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>