01631fecce0db264299530a4cb885815ecc2681b
[srvgit] / 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         [% IF Koha.Preference('ArticleRequests') %]
36         <h5>Patron request</h5>
37         <ul>
38             <li><a href="/cgi-bin/koha/circ/article-requests.pl">Article requests</a></li>
39         </ul>
40         [% END %]
41
42         <h5>Circulation reports</h5>
43         <ul>
44             <li><a href="/cgi-bin/koha/circ/view_holdsqueue.pl">Holds queue</a></li>
45             <li><a href="/cgi-bin/koha/circ/pendingreserves.pl">Holds to pull</a></li>
46             <li><a href="/cgi-bin/koha/circ/waitingreserves.pl">Holds awaiting pickup</a></li>
47             <li><a href="/cgi-bin/koha/circ/reserveratios.pl">Hold ratios</a></li>
48             <li><a href="/cgi-bin/koha/circ/transferstoreceive.pl">Transfers to receive</a></li>
49             [% IF ( CAN_user_circulate_overdues_report ) %]
50                 <li><a href="/cgi-bin/koha/circ/overdue.pl">Overdues</a></li>
51             [% END %]
52             <li><a href="/cgi-bin/koha/circ/branchoverdues.pl">Overdues with fines</a></li>
53             [% IF Koha.Preference('OnSiteCheckouts') %]
54                 <li><a href="/cgi-bin/koha/circ/on-site_checkouts.pl">Pending on-site checkouts</a></li>
55             [% END %]
56
57             [% IF Koha.Preference('UseRecalls') and CAN_user_recalls %]
58                 <li><a href="/cgi-bin/koha/recalls/recalls_queue.pl" title="All active recalls">Recalls queue</a></li>
59                 <li><a href="/cgi-bin/koha/recalls/recalls_to_pull.pl" title="Recalls that could be filled but have not been set waiting">Recalls to pull</a></li>
60                 <li><a href="/cgi-bin/koha/recalls/recalls_overdue.pl" title="Recalled items that are overdue to be returned">Overdue recalls</a></li>
61                 <li><a href="/cgi-bin/koha/recalls/recalls_waiting.pl" title="Recalled items awaiting pickup">Recalls awaiting pickup</a></li>
62                 <li><a href="/cgi-bin/koha/recalls/recalls_old_queue.pl" title="Inactive recalls">Old recalls</a></li>
63             [% END %]
64         </ul>
65
66     </div>
67 </div>