Bug 27796: (QA follow-up) Missing filters
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / circ-nav.inc
1 [% USE Koha %]
2 [% USE Branches %]
3 <div id="navmenu">
4     <div id="navmenulist">
5
6         <ul>
7             <li><a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation home</a></li>
8         </ul>
9
10         <h5>Circulation</h5>
11         <ul>
12             <li><a href="/cgi-bin/koha/circ/circulation.pl">Check out</a></li>
13             <li><a href="/cgi-bin/koha/circ/returns.pl">Check in</a></li>
14             <li><a href="/cgi-bin/koha/circ/renew.pl">Renew</a></li>
15             [% IF !Koha.Preference('IndependentBranchesTransfers') || CAN_user_superlibrarian %]
16                 <li><a href="/cgi-bin/koha/circ/branchtransfers.pl">Transfer</a></li>
17             [% END %]
18             [% IF !( Koha.Preference('IndependentBranches') && !CAN_user_superlibrarian && !CAN_user_editcatalogue_edit_catalogue ) %]
19                 [% IF Koha.Preference('UseCirculationDesks') %]
20                 <li><a href="/cgi-bin/koha/circ/set-library.pl">Set library and desk</a></li>
21                 [% ELSE %]
22                 <li><a href="/cgi-bin/koha/circ/set-library.pl">Set library</a></li>
23                 [% END %]
24             [% ELSIF Koha.Preference('UseCirculationDesks') %]
25                 <li><a href="/cgi-bin/koha/circ/set-library.pl">Set desk</a></li>
26             [% END %]
27             [% IF ( fast_cataloging ) %][% IF ( CAN_user_editcatalogue_fast_cataloging ) %]
28                 <li><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=FA">Fast cataloging</a></li>
29             [% END %][% END %]
30             [% IF Koha.Preference('AllowCheckoutNotes') && CAN_user_circulate_manage_checkout_notes %]
31                 <li><a href="/cgi-bin/koha/circ/checkout-notes.pl">Checkout notes</a> [% IF pending_checkout_notes.count %]<span class="number_box"><a href="/cgi-bin/koha/circ/checkout-notes.pl">[% pending_checkout_notes.count | html %]</a></span>[% END %]</li>
32             [% END %]
33         </ul>
34
35         <h5>Circulation reports</h5>
36         <ul>
37             <li><a href="/cgi-bin/koha/circ/view_holdsqueue.pl">Holds queue</a></li>
38             <li><a href="/cgi-bin/koha/circ/pendingreserves.pl">Holds to pull</a></li>
39             <li><a href="/cgi-bin/koha/circ/waitingreserves.pl">Holds awaiting pickup</a></li>
40             <li><a href="/cgi-bin/koha/circ/reserveratios.pl">Hold ratios</a></li>
41             <li><a href="/cgi-bin/koha/circ/transferstoreceive.pl">Transfers to receive</a></li>
42             [% IF ( CAN_user_circulate_overdues_report ) %]
43                 <li><a href="/cgi-bin/koha/circ/overdue.pl">Overdues</a></li>
44             [% END %]
45             <li><a href="/cgi-bin/koha/circ/branchoverdues.pl">Overdues with fines</a></li>
46             [% IF Koha.Preference('OnSiteCheckouts') %]
47                 <li><a href="/cgi-bin/koha/circ/on-site_checkouts.pl">Pending on-site checkouts</a></li>
48             [% END %]
49         </ul>
50
51     </div>
52 </div>