Bug 24201: (follow-up) Rework Desks Plugin
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / circ-nav.inc
blob574224cdd677a1b18bf975dcfec077a5f412e93e
1 [% USE Branches %]
2 [% USE Desks %]
3 <div id="navmenu">
4     <div id="navmenulist">
6         <ul>
7             <li><a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation home</a></li>
8         </ul>
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 ( AutoLocation ) %][% ELSE %][% IF ( IndependentBranches ) %][% ELSE %]
19                 <li><a href="/cgi-bin/koha/circ/set-library.pl">Set library</a></li>
20             [% END %][% END %]
21             [% IF Desks.ListForLibrary.count %]
22                 <li><a href="/cgi-bin/koha/circ/selectdesk.pl">Set desk</a></li>
23             [% END %]
24             [% IF ( fast_cataloging ) %][% IF ( CAN_user_editcatalogue_fast_cataloging ) %]
25                 <li><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=FA">Fast cataloging</a></li>
26             [% END %][% END %]
27             [% IF Koha.Preference('AllowCheckoutNotes') && CAN_user_circulate_manage_checkout_notes %]
28                 <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>
29             [% END %]
30         </ul>
32         <h5>Circulation reports</h5>
33         <ul>
34             <li><a href="/cgi-bin/koha/circ/view_holdsqueue.pl">Holds queue</a></li>
35             <li><a href="/cgi-bin/koha/circ/pendingreserves.pl">Holds to pull</a></li>
36             <li><a href="/cgi-bin/koha/circ/waitingreserves.pl">Holds awaiting pickup</a></li>
37             <li><a href="/cgi-bin/koha/circ/reserveratios.pl">Hold ratios</a></li>
38             <li><a href="/cgi-bin/koha/circ/transferstoreceive.pl">Transfers to receive</a></li>
39             [% IF ( CAN_user_circulate_overdues_report ) %]
40                 <li><a href="/cgi-bin/koha/circ/overdue.pl">Overdues</a></li>
41             [% END %]
42             <li><a href="/cgi-bin/koha/circ/branchoverdues.pl">Overdues with fines</a></li>
43             [% IF Koha.Preference('OnSiteCheckouts') %]
44                 <li><a href="/cgi-bin/koha/circ/on-site_checkouts.pl">Pending on-site checkouts</a></li>
45             [% END %]
46         </ul>
48     </div>
49 </div>