Bug 25801: (follow-up) Add Show all items-link on opac-detail
As requested by Katrin in QA, it might be helpful to provide a link to return to the regular view with all items. The information about acquisition and holds refers to all items, so I moved it inside the else branch of this block. Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
dbaf146266
commit
5fdbfcf616
1 changed files with 4 additions and 0 deletions
|
@ -586,6 +586,9 @@
|
|||
<p>This record has many physical items ([% items_count | html %]). <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblio.biblionumber | uri %]&viewallitems=1">Click here to view them all.</a></p>
|
||||
[% ELSIF ( itemloop.size ) %]
|
||||
[% INCLUDE items_table items=itemloop tab="holdings" table_id="holdingst" %]
|
||||
[% IF specific_item %]
|
||||
<p><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblio.biblionumber | uri %]">Show all items</a></p>
|
||||
[% ELSE %]
|
||||
[% IF Koha.Preference('OPACAcquisitionDetails') and acquisition_details.total_quantity > 0 %]
|
||||
[% IF acquisition_details.total_quantity == 1 %]
|
||||
<span>1 item is on order.</span>
|
||||
|
@ -607,6 +610,7 @@
|
|||
[% END %]
|
||||
</div>
|
||||
[% END %]
|
||||
[% END %]
|
||||
[% ELSE %]
|
||||
[% IF ( ALTERNATEHOLDINGS ) %]
|
||||
[% FOREACH ALTERNATEHOLDING IN ALTERNATEHOLDINGS %]
|
||||
|
|
Loading…
Reference in a new issue