Koha/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/showorder.tt
Julian Maurice 200a468a9c Bug 12395: Add FK constraint and use patron-title.inc
Signed-off-by: Julian Maurice <julian.maurice@biblibre.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
2018-07-06 14:01:51 +00:00

33 lines
1.1 KiB
Text

[% INCLUDE 'doc-head-open.inc' %]
<title>Koha &rsaquo; Acquisitions &rsaquo; Order details</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 %]
</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 %]
</li>
<li>
<span class="label">Last claim date: </span>
[% order.claimed_date %]
</li>
</ol>
</fieldset>
[% ELSE %]
No order found
[% END %]
</div>
</body>
</html>