Bug 24201: (QA follow-up) Add 'and desk' to menus and title
[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                             [% IF Koha.Preference('UseCirculationDesks') %]
34                             <a class="circ-button" href="/cgi-bin/koha/circ/set-library.pl"><i class="fa fa-home"></i> Set library and desk</a>
35                             [% ELSE %]
36                             <a class="circ-button" href="/cgi-bin/koha/circ/set-library.pl"><i class="fa fa-home"></i> Set library</a>
37                             [% END %]
38                         </li>
39                     [% END %]
40                     [% IF ( fast_cataloging ) %]
41                         [% IF ( CAN_user_editcatalogue_fast_cataloging ) %]
42                             <li>
43                                 <a class="circ-button" href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=FA"><i class="fa fa-plus"></i> Fast cataloging</a>
44                             </li>
45                         [% END %]
46                     [% END %]
47                     [% IF ( Koha.Preference('AllowCheckoutNotes') && CAN_user_circulate_manage_checkout_notes ) %]
48                         <li>
49                             <a class="circ-button" href="/cgi-bin/koha/circ/checkout-notes.pl"><i class="fa fa-sticky-note"></i> Checkout notes</a>
50                         </li>
51                     [% END %]
52                     [% IF Koha.Preference('OnSiteCheckouts') %]
53                         <li>
54                             <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>
55                         </li>
56                     [% END %]
57                 </ul>
58             </div>
59
60             <div class="col-sm-5 col-md-4">
61                 <h3>Holds</h3>
62
63                 <ul class="buttons-list">
64                     <li>
65                         <a class="circ-button" href="/cgi-bin/koha/circ/view_holdsqueue.pl"><i class="fa fa-tasks"></i> Holds queue</a>
66                     </li>
67                     <li>
68                         <a class="circ-button" href="/cgi-bin/koha/circ/pendingreserves.pl"><i class="fa fa-hand-grab-o"></i> Holds to pull</a>
69                     </li>
70                     <li>
71                         <a class="circ-button" href="/cgi-bin/koha/circ/waitingreserves.pl"><i class="fa fa-calendar"></i> Holds awaiting pickup</a>
72                     </li>
73                     <li>
74                         <a class="circ-button" href="/cgi-bin/koha/circ/reserveratios.pl"><i class="fa fa-line-chart"></i> Hold ratios</a>
75                     </li>
76                 </ul>
77             </div>
78
79             <!-- Add the extra clearfix for only the required viewport -->
80             <div class="clearfix visible-sm-block"></div>
81
82             <div class="col-sm-5 col-md-4">
83                 [% IF Koha.Preference('ArticleRequests') %]
84                     <h3>Patron request</h3>
85                     <ul class="buttons-list">
86                         <li>
87                             <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>
88                         </li>
89                     </ul>
90                 [% END %]
91
92                 <h3>Transfers</h3>
93
94                 <ul class="buttons-list">
95                     [% IF !Koha.Preference('IndependentBranchesTransfers') || CAN_user_superlibrarian %]
96                         <li>
97                             <a class="circ-button" href="/cgi-bin/koha/circ/branchtransfers.pl"><i class="fa fa-exchange"></i> Transfer</a>
98                         </li>
99                     [% END %]
100                     <li>
101                         <a class="circ-button" href="/cgi-bin/koha/circ/transferstoreceive.pl"><i class="fa fa-sign-in"></i> Transfers to receive</a>
102                     </li>
103                 </ul>
104
105                 <h3>Overdues</h3>
106
107                 <ul class="buttons-list">
108                      [% IF ( CAN_user_circulate_overdues_report ) %]
109                         <li>
110                             <a class="circ-button"
111                                 href="/cgi-bin/koha/circ/overdue.pl"
112                                 title="Warning: This report is very resource intensive on systems with large numbers of overdue items."
113                             ><i class="fa fa-clock-o"></i> Overdues</a>
114                         </li>
115                     [% END %]
116                     <li>
117                         <a class="circ-button"
118                             href="/cgi-bin/koha/circ/branchoverdues.pl"
119                             title="Limited to your library.  See report help for other details."
120                         ><i class="fa fa-clock-o"></i> Overdues with fines</a>
121                     </li>
122                 </ul>
123             </div>
124         </div>
125         <div class="row" id="intranet-circulation-home-html">
126             <div class="col-md-12">
127                 [% Koha.Preference('IntranetCirculationHomeHTML') | $raw  %]
128             </div>
129         </div>
130         <div class="row" id="offline-circulation">
131             <div class="col-md-12">
132                 <h4>Offline circulation</h4>
133                     <div class="col-sm-5 col-md-3">
134                     [% IF (AllowOfflineCirculation) %]
135                         <a href="/cgi-bin/koha/circ/offline.pl">Built-in offline circulation interface</a>
136                     [% END %]
137                        <p><a href="/cgi-bin/koha/offline_circ/process_koc.pl">Upload offline circulation file (.koc)</a></p>
138                        <p><a href="/cgi-bin/koha/offline_circ/list.pl">Pending offline circulation actions</a></p>
139                     </div>
140                     <div class="col-sm-5 col-md-3">
141                     <p><a href="https://github.com/bywatersolutions/koha-offline-circulation/releases"><i class="fa fa-window-maximize"></i> Get desktop application</a></p>
142                     <p><a href="https://addons.mozilla.org/[% lang | uri %]/firefox/addon/koct/"><i class="fa fa-firefox"></i> Get Firefox add-on</a></p>
143                     </div>
144             </div>
145         </div>
146
147 [% INCLUDE 'intranet-bottom.inc' %]