From e3883911805fba332d430a4f7cfd88da0687b820 Mon Sep 17 00:00:00 2001 From: Paul Poulain <paul.poulain@biblibre.com> Date: Wed, 15 Dec 2010 14:03:51 +0100 Subject: [PATCH] Bug 5882 : catalogue/moredetails (minor) changes MT3288 moredetail.tmpl Lost and Damaged first choice is empty First choice was the first value of the authorised value list This is not handy for users. Rather than showing the first value, inserting a new empty value for users to see what to do Term "Total Renewals" misleading, change to "Current Renewals" In koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tmpl under History, there's a Total Renewals entry: seems to indicate a cumulative count of renewals on the item, which it is not, contrary to "Total Issues" just below. Moved the line up outside "history", and renamed it "Current Renewals". --- .../prog/en/modules/catalogue/moredetail.tmpl | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tmpl index 87741d7..e67a864 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tmpl @@ -67,6 +67,7 @@ <ol class="bibliodetails"> <li><span class="label">Current Location:</span> <!-- TMPL_VAR NAME="holdingbranchname" --> </li> <li><span class="label">Checkout Status:</span> <!-- TMPL_IF NAME="issue" -->Checked out to <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->"><!-- TMPL_VAR NAME="cardnumber" --></a>, Due back on <!-- TMPL_VAR NAME="datedue" --><!-- TMPL_ELSE -->Not Checked out <!-- /TMPL_IF --></li> + <li><span class="label">Current Renewals:</span> <!-- TMPL_VAR NAME="renewals" --> </li> <!-- TMPL_IF name="itemlostloop" --> <li><span class="label">Lost Status:</span> <!-- TMPL_IF NAME="CAN_user_circulate" --> @@ -75,6 +76,7 @@ <input type="hidden" name="biblioitemnumber" value="<!-- TMPL_VAR Name="biblioitemnumber" -->" /> <input type="hidden" name="itemnumber" value="<!-- TMPL_VAR Name="itemnumber" -->" /> <select name="itemlost" > + <option value="">Choose</option> <!-- TMPL_LOOP NAME="itemlostloop" --> <!-- TMPL_IF NAME="selected" --> <option value="<!-- TMPL_VAR NAME="authorised_value" -->" selected="selected"><!-- TMPL_VAR NAME="lib" --></option> @@ -104,6 +106,7 @@ <input type="hidden" name="biblioitemnumber" value="<!-- TMPL_VAR Name="biblioitemnumber" -->" /> <input type="hidden" name="itemnumber" value="<!-- TMPL_VAR Name="itemnumber" -->" /> <select name="damaged" > + <option value="">Choose</option> <!-- TMPL_LOOP NAME="itemdamagedloop" --> <!-- TMPL_IF NAME="selected" --> <option value="<!-- TMPL_VAR NAME="authorised_value" -->" selected="selected"><!-- TMPL_VAR NAME="lib" --></option> @@ -160,8 +163,7 @@ <!-- TMPL_VAR NAME="dateaccessioned" --> <!-- /TMPL_IF --> </li> - <li><span class="label">Total Renewals:</span> <!-- TMPL_VAR NAME="renewals" --> </li> - + <li><span class="label">Total Checkouts:</span><!-- TMPL_IF NAME="issues" --><!-- TMPL_VAR NAME="issues" --><!-- TMPL_ELSE -->0<!-- /TMPL_IF --> (<a href="/cgi-bin/koha/circ/bookcount.pl?&biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->&bi=<!-- TMPL_VAR NAME="biblioitemnumber" -->&itm=<!-- TMPL_VAR NAME="itemnumber" -->">View item's checkout history</a>)</li> <li><span class="label">Last seen:</span> <!-- TMPL_VAR NAME="datelastseen" --> </li> -- 1.7.1