Bug 22475: Shelving location doesn't appear on tags list view
This patch corrects the tags list view so that shelving location appears correctly. Previously the template tried to display a variable which was empty. To test, apply the patch and locate an title which has both a tag applied to it and a shelving location defined for one or more items. Go to Tools -> Tags and click the tag to view titles with that tag. In the location column of the table the shelving location should appear along with library and call number. Signed-off-by: Liz Rea <wizzyrea@gmail.com> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
parent
0e0a317385
commit
54cf1df239
1 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
[% USE raw %]
|
||||
[% USE Asset %]
|
||||
[% USE AuthorisedValues %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Koha › Tools › Tags › [% IF ( do_it ) %]Review › [% ELSE %]Review tags[% END %]</title>
|
||||
|
@ -47,7 +48,9 @@ tr.selected { background-color : #FFFFCC; } tr.selected td { background-color :
|
|||
<td>[% IF ( title.items ) %]<ul style="font-size:80%">[% FOREACH item IN title.items %]
|
||||
<li>
|
||||
[% item.branchname | html %]
|
||||
<span class="shelvingloc">[% item.location_description | html %]</span>
|
||||
<span class="shelvingloc">
|
||||
[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => item.location ) | html %]
|
||||
</span>
|
||||
[% IF ( item.itemcallnumber ) %]
|
||||
([% item.itemcallnumber | html %])
|
||||
[% END %]
|
||||
|
|
Loading…
Reference in a new issue