Bug 10300: (follow-up) add controls on transfers page
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / circ / circulation-home.tt
1 [% USE raw %]
2 [% USE Koha %]
3 [% USE Branches %]
4 [% INCLUDE 'doc-head-open.inc' %]
5 <title>Koha &rsaquo; Circulation</title>
6 [% INCLUDE 'doc-head-close.inc' %]
7 </head>
8 <body id="circ_circulation-home" class="circ">
9 [% INCLUDE 'header.inc' %]
10 [% INCLUDE 'circ-search.inc' %]
11
12 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; Circulation</div>
13
14     <div class="main container-fluid">
15
16         <div class="row">
17
18             <div class="col-sm-5 col-md-4">
19                 <h3>Circulation</h3>
20
21                 <ul class="buttons-list">
22                     <li>
23                         <a class="circ-button" href="/cgi-bin/koha/circ/circulation.pl"><i class="fa fa-upload"></i> Check out</a>
24                     </li>
25                     <li>
26                         <a class="circ-button" href="/cgi-bin/koha/circ/returns.pl"><i class="fa fa-download"></i> Check in</a>
27                     </li>
28                     <li>
29                         <a class="circ-button" href="/cgi-bin/koha/circ/renew.pl"><i class="fa fa-retweet"></i> Renew</a>
30                     </li>
31                     [% UNLESS IndependentBranches %]
32                         <li>
33                             <a class="circ-button" href="/cgi-bin/koha/circ/selectbranchprinter.pl"><i class="fa fa-home"></i> Set library</a>
34                         </li>
35                     [% END %]
36                     [% IF ( fast_cataloging ) %]
37                         [% IF ( CAN_user_editcatalogue_fast_cataloging ) %]
38                             <li>
39                                 <a class="circ-button" href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=FA"><i class="fa fa-plus"></i> Fast cataloging</a>
40                             </li>
41                         [% END %]
42                     [% END %]
43                     [% IF ( Koha.Preference('AllowCheckoutNotes') && CAN_user_circulate_manage_checkout_notes ) %]
44                         <li>
45                             <a class="circ-button" href="/cgi-bin/koha/circ/checkout-notes.pl"><i class="fa fa-sticky-note"></i> Checkout notes</a>
46                         </li>
47                     [% END %]
48                     [% IF Koha.Preference('OnSiteCheckouts') %]
49                         <li>
50                             <a class="circ-button" href="/cgi-bin/koha/circ/on-site_checkouts.pl"><i class="fa fa-map-marker"></i> Pending on-site checkouts</a>
51                         </li>
52                     [% END %]
53                 </ul>
54             </div>
55
56             <div class="col-sm-5 col-md-4">
57                 <h3>Holds</h3>
58
59                 <ul class="buttons-list">
60                     <li>
61                         <a class="circ-button" href="/cgi-bin/koha/circ/view_holdsqueue.pl"><i class="fa fa-tasks"></i> Holds queue</a>
62                     </li>
63                     <li>
64                         <a class="circ-button" href="/cgi-bin/koha/circ/pendingreserves.pl"><i class="fa fa-hand-grab-o"></i> Holds to pull</a>
65                     </li>
66                     <li>
67                         <a class="circ-button" href="/cgi-bin/koha/circ/waitingreserves.pl"><i class="fa fa-calendar"></i> Holds awaiting pickup</a>
68                     </li>
69                     <li>
70                         <a class="circ-button" href="/cgi-bin/koha/circ/reserveratios.pl"><i class="fa fa-line-chart"></i> Hold ratios</a>
71                     </li>
72                 </ul>
73             </div>
74
75             <!-- Add the extra clearfix for only the required viewport -->
76             <div class="clearfix visible-sm-block"></div>
77
78             <div class="col-sm-5 col-md-4">
79                 [% IF Koha.Preference('ArticleRequests') %]
80                     <h3>Patron request</h3>
81                     <ul class="buttons-list">
82                         <li>
83                             <a class="circ-button" href="/cgi-bin/koha/circ/article-requests.pl" title="Article requests"><i class="fa fa-newspaper-o"></i> Article requests</a>
84                         </li>
85                     </ul>
86                 [% END %]
87
88                 <h3>Transfers</h3>
89
90                 <ul class="buttons-list">
91                     [% IF !Koha.Preference('IndependentBranchesTransfers') || CAN_user_superlibrarian %]
92                         <li>
93                             <a class="circ-button" href="/cgi-bin/koha/circ/branchtransfers.pl"><i class="fa fa-exchange"></i> Transfer</a>
94                         </li>
95                     [% END %]
96                     <li>
97                         <a class="circ-button" href="/cgi-bin/koha/circ/transferstoreceive.pl"><i class="fa fa-sign-in"></i> Transfers to receive</a>
98                     </li>
99                 </ul>
100
101                 <h3>Overdues</h3>
102
103                 <ul class="buttons-list">
104                      [% IF ( CAN_user_circulate_overdues_report ) %]
105                         <li>
106                             <a class="circ-button"
107                                 href="/cgi-bin/koha/circ/overdue.pl"
108                                 title="Warning: This report is very resource intensive on systems with large numbers of overdue items."
109                             ><i class="fa fa-clock-o"></i> Overdues</a>
110                         </li>
111                     [% END %]
112                     <li>
113                         <a class="circ-button"
114                             href="/cgi-bin/koha/circ/branchoverdues.pl"
115                             title="Limited to your library.  See report help for other details."
116                         ><i class="fa fa-clock-o"></i> Overdues with fines</a>
117                     </li>
118                 </ul>
119             </div>
120         </div>
121         <div class="row" id="intranet-circulation-home-html">
122             <div class="col-md-12">
123                 [% Koha.Preference('IntranetCirculationHomeHTML') | $raw  %]
124             </div>
125         </div>
126         <div class="row" id="offline-circulation">
127             <div class="col-md-12">
128                 <h4>Offline circulation</h4>
129                     <div class="col-sm-5 col-md-3">
130                     [% IF (AllowOfflineCirculation) %]
131                         <a href="/cgi-bin/koha/circ/offline.pl">Built-in offline circulation interface</a>
132                     [% END %]
133                        <p><a href="/cgi-bin/koha/offline_circ/process_koc.pl">Upload offline circulation file (.koc)</a></p>
134                        <p><a href="/cgi-bin/koha/offline_circ/list.pl">Pending offline circulation actions</a></p>
135                     </div>
136                     <div class="col-sm-5 col-md-3">
137                     <p><a href="https://github.com/bywatersolutions/koha-offline-circulation/releases"><i class="fa fa-window-maximize"></i> Get desktop application</a></p>
138                     <p><a href="https://addons.mozilla.org/[% lang | uri %]/firefox/addon/koct/"><i class="fa fa-firefox"></i> Get Firefox add-on</a></p>
139                     </div>
140             </div>
141         </div>
142
143 [% INCLUDE 'intranet-bottom.inc' %]