Kyle M Hall
cc79ab3cdd
Some librarians have expressed that it would be helpful if the holds tab displayed the count of holds for a record. Test Plan: 1) Apply this patch 2) Note the Holds tab for a record now displays the number of holds for that record Signed-off-by: Jason Robb <jrobb@sekls.org> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
38 lines
2.2 KiB
HTML
38 lines
2.2 KiB
HTML
[% USE Biblio %]
|
|
[% SET biblio_object_id = object || biblionumber %]
|
|
<div id="menu">
|
|
<ul>
|
|
[% IF ( detailview ) %]<li class="active">[% ELSE %]<li>[% END %]
|
|
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblio_object_id %]">Normal</a></li>
|
|
|
|
[% IF ( can_view_MARC ) %]
|
|
[% IF ( marcview ) %]<li class="active">[% ELSE %]<li>[% END %]
|
|
<a href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% biblio_object_id %]">MARC</a></li>
|
|
[% END %]
|
|
|
|
[% IF ( can_view_labeledMARC ) %]
|
|
[% IF ( labeledmarcview ) %]<li class="active">[% ELSE %]<li>[% END %]
|
|
<a href="/cgi-bin/koha/catalogue/labeledMARCdetail.pl?biblionumber=[% biblio_object_id %]">Labeled MARC</a></li>
|
|
[% END %]
|
|
|
|
[% IF ( can_view_ISBD ) %]
|
|
[% IF ( isbdview ) %]<li class="active">[% ELSE %]<li>[% END %]
|
|
<a href="/cgi-bin/koha/catalogue/ISBDdetail.pl?biblionumber=[% biblio_object_id %]">ISBD</a></li>
|
|
[% END %]
|
|
|
|
[% IF ( moredetailview ) %]<li class="active">[% ELSE %]<li>[% END %]
|
|
<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% biblio_object_id %]">Items</a></li>
|
|
[% IF ( CAN_user_reserveforothers ) %]
|
|
[% IF ( holdsview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% biblio_object_id %]">Holds ([% Biblio.HoldsCount( biblio_object_id ) %])</a></li>
|
|
[% END %]
|
|
[% IF ( EasyAnalyticalRecords ) %][% IF ( analyze ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblio_object_id %]&analyze=1">Analytics</a></li>[% END %]
|
|
|
|
[% IF ( subscriptionsnumber ) %]<li><a href="/cgi-bin/koha/serials/serials-search.pl?searched=1&biblionumber=[% biblio_object_id %]">Subscription(s)</a></li>[% END %]
|
|
</ul>
|
|
<ul>
|
|
[% IF ( issuehistoryview ) %]<li class="active">[% ELSE %]<li>[% END %]
|
|
<a href="/cgi-bin/koha/catalogue/issuehistory.pl?biblionumber=[% biblio_object_id %]" >Checkout history</a></li>
|
|
[% IF ( CAN_user_tools_view_system_logs ) %][% IF ( logview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/tools/viewlog.pl?do_it=1&modules=CATALOGUING&action=MODIFY&object=[% biblio_object_id %]">Modification log</a> </li>[% END %]
|
|
</ul>
|
|
</div>
|
|
|