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