From c644db2a11b48819f24a476b5e8c382a00091f42 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Date: Fri, 22 Dec 2017 08:23:23 +0100 Subject: [PATCH] Bug 19494: (QA follow-up) Rename column and apply title-string As requested by Katrin, the column should not refer to Reserve but Hold. Sorting should be the same as Waiting since-column. Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> --- .../intranet-tmpl/prog/en/modules/circ/waitingreserves.tt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt index b25615d..844e4a3 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt @@ -70,7 +70,7 @@ <table id="holdst"> <thead><tr> <th class="title-string">Waiting since</th> - <th>Reserve date</th> + <th class="title-string">Date hold placed</th> <th class="anti-the">Title</th> <th>Patron</th> <th>Home branch</th> @@ -83,7 +83,7 @@ <tbody>[% FOREACH reserveloo IN reserveloop %] <tr> <td><span title="[% reserveloo.waitingdate %]">[% reserveloo.waitingdate | $KohaDates %]</span></td> - <td>[% reserveloo.reservedate | $KohaDates %]</td> + <td><span title="[% reserveloo.reservedate %]">[% reserveloo.reservedate | $KohaDates %]</span></td> <td>[% INCLUDE 'biblio-default-view.inc' biblionumber = reserveloo.biblionumber %] [% reserveloo.title |html %] [% FOREACH subtitl IN reserveloo.subtitle %] [% subtitl.subfield %][% END %] </a> @@ -141,7 +141,7 @@ <table id="holdso"> <thead><tr> <th class="title-string">Waiting since</th> - <th>Reserve date</th> + <th class="title-string">Date hold placed</th> <th class="anti-the">Title</th> <th>Patron</th> <th>Home branch</th> @@ -153,8 +153,8 @@ </tr></thead> <tbody>[% FOREACH overloo IN overloop %] <tr> - <td><p><span title="[% overloo.waitingdate %]">[% overloo.waitingdate | $KohaDates %]</span></p></td> - <td>[% overloo.reservedate | $KohaDates %]</td> + <td><span title="[% overloo.waitingdate %]">[% overloo.waitingdate | $KohaDates %]</span></td> + <td><span title="[% overloo.reservedate %]">[% overloo.reservedate | $KohaDates %]</span></td> <td>[% INCLUDE 'biblio-default-view.inc' biblionumber = overloo.biblionumber %][% overloo.title |html %] [% FOREACH subtitl IN overloo.subtitle %] [% subtitl.subfield %][% END %] </a> -- 2.1.4