Bug 13618: Fix for debarredcomment and patron messages
[koha.git] / koha-tmpl / opac-tmpl / bootstrap / en / modules / opac-user.tt
1 [% USE Koha %]
2 [% USE KohaDates %]
3
4 [% INCLUDE 'doc-head-open.inc' %]
5 <title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Your library home</title>
6 [% INCLUDE 'doc-head-close.inc' %]
7 [% BLOCK cssinclude %][% END %]
8 </head>
9 [% INCLUDE 'bodytag.inc' bodyid='opac-user' bodyclass='scrollto' %]
10 [% INCLUDE 'masthead.inc' %]
11
12 <div class="main">
13     <ul class="breadcrumb">
14         <li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">&rsaquo;</span></li>
15         <li><a href="/cgi-bin/koha/opac-user.pl">[% INCLUDE 'patron-title.inc' category_type = BORROWER_INFO.category_type firstname = BORROWER_INFO.firstname surname = BORROWER_INFO.surname othernames = BORROWER_INFO.othernames cardnumber = BORROWER_INFO.cardnumber %]</a> <span class="divider">&rsaquo;</span></li>
16         <li><a href="#">Your summary</a></li>
17     </ul>
18
19     <div class="container-fluid">
20         <div class="row-fluid">
21             <div class="span2">
22                 <div id="navigation">
23                     [% INCLUDE 'navigation.inc' IsPatronPage=1 %]
24                 </div>
25             </div>
26             <div class="span10">
27                 <div id="userdetails" class="maincontent">
28                     [% IF ( bor_messages ) %]
29                         <div class="alert alert-info">
30                             <h3>Messages for you</h3>
31                                 <ul>
32                                     [% FOREACH bor_messages_loo IN bor_messages_loop %]
33                                         <li>
34                                         <strong>[% bor_messages_loo.message.raw %]</strong><br>
35                                         &nbsp;&nbsp;&nbsp;<i>Written on [% bor_messages_loo.message_date | $KohaDates %] by [% bor_messages_loo.branchname %]</i>
36                                         </li>
37                                     [% END %]
38
39                                     [% IF ( opacnote ) %]<li>[% opacnote %]</li>[% END %]
40                                 </ul>
41                         </div>
42                     [% END # / IF bor_messages %]
43                     <h2>Hello, [% INCLUDE 'patron-title.inc' category_type = BORROWER_INFO.category_type firstname = BORROWER_INFO.firstname surname = BORROWER_INFO.surname othernames = BORROWER_INFO.othernames cardnumber = BORROWER_INFO.cardnumber %]
44                     </h2>
45
46                     <p><a href="/cgi-bin/koha/opac-main.pl?logout.x=1">Click here if you're not [% BORROWER_INFO.title %] [% INCLUDE 'patron-title.inc' category_type = BORROWER_INFO.category_type firstname = BORROWER_INFO.firstname surname = BORROWER_INFO.surname othernames = BORROWER_INFO.othernames cardnumber = BORROWER_INFO.cardnumber %]</a></p>
47
48                     [% IF ( patronupdate ) %]<div class="alert alert-info"><h3>Thank you!</h3><p>Your corrections have been submitted to the library, and a staff member will update your record as soon as possible.</p></div>[% END %]
49
50                     [% IF failed_holds %]
51                         <div class="alert alert-info">
52                             <h3>Notice:</h3>
53                             <p>One or more holds were not placed due to existing holds.</p>
54                         </div>
55                     [% END %]
56
57                     [% IF ( BORROWER_INFO.warndeparture ) %]
58                         <div class="alert" id="warndeparture">
59                             <strong>Please note:</strong><span> Your card will expire on <span id="warndeparture_date">[% BORROWER_INFO.warndeparture | $KohaDates %]</span>. Please contact the library for more information.</span>
60                                 [% IF ( BORROWER_INFO.returnbeforeexpiry ) %]<span id="warndeparture_returnbeforeexpiry"> Also note that you must return all checked out items before your card expires.</span>[% END %]
61                         </div>
62                     [% END %]
63
64                     [% IF ( BORROWER_INFO.warnexpired ) %]
65                         <div class="alert" id="warnexpired">
66                             <strong>Please note: </strong><span>Your account has expired as of [% BORROWER_INFO.warnexpired | $KohaDates %]. Please contact the library if you wish to renew your account.</span>
67                         </div>
68                     [% END %]
69
70                     [% IF ( RENEW_ERROR ) %]
71                         <div class="dialog alert">
72                             <strong>Please note:</strong>
73                             <span>
74                                 Your loan renewal failed because of the following reason(s):
75                                 [% FOREACH error IN RENEW_ERROR.split('\|') %]
76                                     [% IF error == 'card_expired' %]
77                                         Your account has expired. Please contact the library for more information.
78                                     [% ELSIF error == 'too_many' %]
79                                         You have renewed this item the maximum number of times allowed.
80                                     [% ELSIF error == 'on_reserve' %]
81                                         This item is on hold for another patron.
82                                     [% END %]
83                                 [% END %]
84                             </span>
85                         </div>
86                     [% END %]
87
88                     [% IF ( patron_flagged ) %]
89                         <div class="alert">
90                             <ul>
91                                 [% IF ( userdebarred ) %]
92                                     <li id="userdebarred"><strong>Please note:</strong> Your account has been frozen[% IF ( BORROWER_INFO.userdebarreddate ) %] until <span id="userdebarred_date">[% BORROWER_INFO.userdebarreddate | $KohaDates %]</span>[% END %][% IF ( BORROWER_INFO.debarredcomment ) %] with the comment <span id="userdebarred_comment">"[% BORROWER_INFO.debarredcomment.raw %]"</span>[% END %]. Usually the reason for freezing an account is old overdues or damage fees. If <a href="/cgi-bin/koha/opac-account.pl">your account page</a> shows your account to be clear, please contact the library.</li>
93                                 [% END %]
94                                 [% IF ( BORROWER_INFO.gonenoaddress ) %]
95                                     <li id="gonenoaddress"><strong>Please note:</strong> According to our records, we don't have up-to-date [% UNLESS OPACPatronDetails %]<a href="/cgi-bin/koha/opac-memberentry.pl">contact information</a>[% ELSE %]contact information[% END %] on file.  Please contact the library[% IF OPACPatronDetails %] or use the <a href="/cgi-bin/koha/opac-memberentry.pl">online update form</a> to submit current information (<em>Please note:</em> there may be a delay in restoring your account if you submit online)[% END %].</li>
96                                 [% END %]
97                                 [% IF ( BORROWER_INFO.lost ) %]
98                                     <li id="lost"><strong>Please note: </strong> Your library card has been marked as lost or stolen. If this is an error, please contact the library.</li>
99                                 [% END %]
100                                 [% IF ( renewal_blocked_fines ) && ( OpacRenewalAllowed ) %]
101                                     <li id="renewal_blocked_fines"><strong>Please note: </strong> Since you have <a href="/cgi-bin/koha/opac-account.pl">[% IF renewal_blocked_fines != "0.00" %] more than <span id="renewal_blocked_fines_amount">[% renewal_blocked_fines %]</span> in [% END %] fines</a>, you cannot renew your books online. Please pay your fines if you wish to renew your books.</li>
102                                 [% END %]
103                             </ul>
104                         </div>
105                     [% END # / IF patron_flagged %]
106
107                     [% IF OPACMySummaryNote %][% Koha.Preference('OPACMySummaryNote').raw %][% END %]
108
109                     <div id="opac-user-views" class="toptabs">
110                         <ul>
111                             <li><a href="#opac-user-checkouts">Checked out ([% issues_count %])</a></li>
112                             [% IF relatives %]<li><a href="#opac-user-relative-issues">Relatives' checkouts</a></li>[% END %]
113                             [% IF ( overdues_count ) %]<li><a href="#opac-user-overdues">Overdue ([% overdues_count %])</a></li>[% END %]
114                             [% IF ( OPACFinesTab ) %]
115                                 [% IF ( BORROWER_INFO.amountoverfive ) %]<li><a href="#opac-user-fines">Fines ([% BORROWER_INFO.amountoutstanding %])</a></li>[% END %]
116                                 [% IF ( BORROWER_INFO.amountoverzero ) %]<li><a href="#opac-user-fines">Fines ([% BORROWER_INFO.amountoutstanding %])</a></li>[% END %]
117                                 [% IF ( BORROWER_INFO.amountlessthanzero ) %]<li><a href="#opac-user-fines">Credits ([% BORROWER_INFO.amountoutstanding %])</a></li>[% END %]
118                             [% END %]
119                             [% IF ( RESERVES.count ) %]<li><a href="#opac-user-holds">Holds ([% RESERVES.count %])</a></li>[% END %]
120                         </ul>
121
122                         <div id="opac-user-checkouts">
123                             [% IF ( issues_count ) %]
124                                 <form id="renewselected" action="/cgi-bin/koha/opac-renew.pl" method="post">
125                                     <input type="hidden" name="borrowernumber" value="[% borrowernumber %]">
126                                     <input type="hidden" name="from" value="opac_user" />
127                                     <table id="checkoutst" class="table table-bordered table-striped">
128                                         <caption>[% issues_count %] Item(s) checked out</caption>
129                                         <thead>
130                                             <tr>
131                                                 [% IF ( JacketImages ) %]<th class="nosort">&nbsp;</th>[% END %]
132                                                 <th class="anti-the">Title</th>
133                                                 <th class="title-string psort">Due</th>
134                                                 [% UNLESS ( item_level_itypes ) %]
135                                                     <th>Item type</th>
136                                                 [% END %]
137                                                 [% IF ( show_barcode ) %]
138                                                     <th>Barcode</th>
139                                                 [% END %]
140                                                     <th>Call no.</th>
141                                                 [% IF ( OpacRenewalAllowed && !( borrower.is_expired && borrower.BlockExpiredPatronOpacActions ) ) %]
142                                                     <th class="nosort">Renew</th>
143                                                 [% END %]
144                                                 [% IF ( OPACFinesTab ) %]
145                                                     <th>Fines</th>
146                                                 [% END %]
147                                                 [% IF ( OPACMySummaryHTML ) %]
148                                                     <th class="nosort">Links</th>
149                                                 [% END %]
150                                             </tr>
151                                         </thead>
152                                         <tbody>
153                                             [% FOREACH ISSUE IN ISSUES %]
154                                                 [% IF ( ISSUE.overdue ) %]<tr class="overdue">[% ELSE %]<tr>[% END %]
155                                                 [% IF ( JacketImages ) %]<td class="jacketcell">
156
157                                                     [% IF ( OPACAmazonCoverImages ) %]
158                                                         [% IF ( ISSUE.normalized_isbn ) %]
159                                                             <a href="http://www.amazon.com/gp/reader/[% ISSUE.normalized_isbn %]/ref=sib_dp_pt/002-7879865-0184864#reader-link" title="View on Amazon.com"><img src="https://images-na.ssl-images-amazon.com/images/P/[% ISSUE.normalized_isbn %].01.THUMBZZZ.jpg" alt="View on Amazon.com" class="item-thumbnail"/></a>
160                                                         [% ELSE %]
161                                                             <a href="#"><span class="no-image">No cover image available</span></a>
162                                                         [% END %]
163                                                     [% END %]
164
165                                                     [% IF ( GoogleJackets ) %]
166                                                         [% IF ( ISSUE.normalized_isbn ) %]
167                                                             <div style="display:block;" title="Click to view in Google Books" class="[% ISSUE.normalized_isbn %]" id="gbs-thumbnail[% loop.count %]"></div>
168                                                         [% ELSE %]
169                                                             <a href="http://books.google.com/books?q=[% ISSUE.title |url %]"><span class="no-image">No cover image available</span></a>
170                                                         [% END %]
171                                                     [% END %]
172
173                                                     [% IF ( BakerTaylorEnabled ) %]
174                                                         [% bt_id = ( ISSUE.normalized_upc || ISSUE.normalized_isbn ) %]
175                                                         [% IF ( bt_id ) %]
176                                                             <a href="https://[% BakerTaylorBookstoreURL %][% bt_id %]"><img alt="See Baker &amp; Taylor" src="[% BakerTaylorImageURL %][% bt_id %]" /></a>
177                                                         [% ELSE %]
178                                                             <span class="no-image">No cover image available</span><!-- BakerTaylor needs normalized_upc or normalized_isbn! -->
179                                                         [% END %]
180                                                     [% END %]
181
182                                                     [% IF ( SyndeticsEnabled && SyndeticsCoverImages ) %]
183                                                         [% IF ( using_https ) %]
184                                                             <img src="https://secure.syndetics.com/index.aspx?isbn=[% ISSUE.normalized_isbn %]/SC.GIF&amp;client=[% SyndeticsClientCode %]&amp;type=xw10&amp;upc=[% ISSUE.normalized_upc %]&amp;oclc=[% ISSUE.normalized_oclc %]" alt="" class="item-thumbnail" />
185                                                         [% ELSE %]
186                                                             <img src="http://www.syndetics.com/index.aspx?isbn=[% ISSUE.normalized_isbn %]/SC.GIF&amp;client=[% SyndeticsClientCode %]&amp;type=xw10&amp;upc=[% ISSUE.normalized_upc %]&amp;oclc=[% ISSUE.normalized_oclc %]" alt="" class="item-thumbnail" />
187                                                         [% END %]
188                                                     [% END %]
189
190                                                 </td>[% END # / IF JacketImages %]
191
192                                                 <td class="title">
193                                                     <a class="title" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% ISSUE.biblionumber %]">[% ISSUE.title %] [% FOREACH subtitl IN ISSUE.subtitle %] [% subtitl.subfield %][% END %]</a>
194                                                     <span class="item-details">[% ISSUE.author %]</span>
195                                                 </td>
196                                                 [% IF ( ISSUE.overdue ) %]
197                                                     <td class="date_due overdue">
198                                                         <span title="[% ISSUE.date_due %]">
199                                                             <span class="tdlabel">Date due:</span>
200                                                             [% ISSUE.date_due_sql | $KohaDates as_due_date => 1 %]
201                                                         </span>
202                                                     </td>
203                                                 [% ELSE %]
204                                                     <td class="date_due">
205                                                         <span title="[% ISSUE.date_due %]">
206                                                             <span class="tdlabel">Date due:</span>
207                                                             [% ISSUE.date_due_sql | $KohaDates as_due_date => 1 %]
208                                                         </span>
209                                                     </td>
210                                                 [% END %]
211                                                 [% UNLESS ( item_level_itypes ) %]
212                                                     <td class="itype">
213                                                         <span class="tdlabel">Item type:</span>
214                                                         [% IF ( ISSUE.imageurl ) %]
215                                                             <img src="[% ISSUE.imageurl %]" title="[% ISSUE.description %]" alt="[% ISSUE.description %]" />
216                                                         [% END %] [% ISSUE.description %]
217                                                     </td>
218                                                 [% END %]
219                                                 [% IF ( show_barcode ) %]
220                                                     <td class="barcode">
221                                                         <span class="tdlabel">Barcode:</span>
222                                                         [% ISSUE.barcode %]
223                                                     </td>
224                                                 [% END %]
225                                                 <td class="call_no">
226                                                     <span class="tdlabel">Call no.:</span>
227                                                     [% ISSUE.itemcallnumber %]
228                                                 </td>
229                                                 [% IF ( OpacRenewalAllowed && !( borrower.is_expired && borrower.BlockExpiredPatronOpacActions ) ) %]
230                                                     <td class="renew">
231                                                     [% IF ISSUE.renewed %]<span class="blabel label-success">Renewed!</span><br />[% END %]
232                                                     [% IF ( ISSUE.status ) %]
233                                                         [% IF ( canrenew ) %]
234                                                             <input type="checkbox" name="item" value="[% ISSUE.itemnumber %]"/> <a href="/cgi-bin/koha/opac-renew.pl?from=opac_user&amp;item=[% ISSUE.itemnumber %]&amp;borrowernumber=[% ISSUE.borrowernumber %]">Renew</a>
235                                                         [% END %]
236                                                         <span class="renewals">([% ISSUE.renewsleft %] of [% ISSUE.renewsallowed %] renewals remaining)</span>
237                                                     [% ELSIF ( ISSUE.too_many ) %]
238                                                         Not renewable
239                                                     [% ELSIF ( ISSUE.norenew_overdue ) %]
240                                                         Not allowed <span class="renewals">(overdue)</span>
241                                                     [% ELSIF ( ISSUE.auto_renew || ISSUE.auto_too_soon ) %]
242                                                         Automatic renewal
243                                                         <span class="renewals">([% ISSUE.renewsleft %] of [% ISSUE.renewsallowed %] renewals remaining)</span>
244                                                     [% ELSIF ( ISSUE.too_soon ) %]
245                                                         No renewal before [% ISSUE.soonestrenewdate %]
246                                                         <span class="renewals">([% ISSUE.renewsleft %] of [% ISSUE.renewsallowed %] renewals remaining)</span>
247                                                     [% ELSIF ( ISSUE.on_reserve ) %]
248                                                         <span class="renewals">(On hold)</span>
249                                                     [% END %]
250                                                     </td>
251                                                 [% END %]
252                                                 [% IF ( OPACFinesTab ) %]
253                                                     <td class="fines">
254                                                         <span class="tdlabel">Fines:</span>
255                                                         [% IF ( ISSUE.charges ) %]
256                                                             Yes
257                                                         [% ELSE %]
258                                                             No
259                                                         [% END %]
260                                                     </td>
261                                                 [% END %]
262                                                 [% IF ( OPACMySummaryHTML ) %]
263                                                     <td class="links">[% ISSUE.MySummaryHTML.raw %]</td>
264                                                 [% END %]
265                                             </tr>
266                                         [% END # /FOREACH ISSUES %]
267                                     </tbody>
268                                 </table>
269                                 [% IF ( canrenew && !userdebarred && OpacRenewalAllowed && !( borrower.is_expired && borrower.BlockExpiredPatronOpacActions ) ) %]
270                                     <input type="submit" class="btn" value="Renew selected" />
271                                 [% END %]
272                                 </form>
273
274                                 [% IF ( canrenew && !userdebarred && OpacRenewalAllowed && !( borrower.is_expired && borrower.BlockExpiredPatronOpacActions ) ) %]
275                                 <form id="renewall" action="/cgi-bin/koha/opac-renew.pl" method="post">
276                                     <input type="hidden" name="from" value="opac_user" />
277                                     <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
278                                     [% FOREACH ISSUE IN ISSUES %]
279                                         <input type="hidden" name="item" value="[% ISSUE.itemnumber %]" />
280                                     [% END %]
281                                     <input type="submit" class="btn" value="Renew all" />
282                                 </form>
283                                 [% END %]
284                             [% ELSE %]
285                                 <table class="table table-bordered table-striped">
286                                     <tr><td>You have nothing checked out</td></tr>
287                                 </table>
288                             [% END # IF issues_count %]
289                         </div> <!-- / .opac-user-checkouts -->
290
291                         [% IF ( OPACFinesTab ) %]
292                             <!-- FINES BOX -->
293                             [% IF BORROWER_INFO.amountoverfive %]
294                                 <div id="opac-user-fines"> <h3>Fines and charges</h3>
295                                     <table class="table table-bordered table-striped">
296                                         <thead><tr><th colspan="2">Amount</th></tr></thead>
297                                         <tbody>
298                                             <tr>
299                                                 <td>You currently owe fines and charges amounting to:</td>
300                                                 <td><a href="/cgi-bin/koha/opac-account.pl">[% BORROWER_INFO.amountoutstanding %]</a></td>
301                                             </tr>
302                                         </tbody>
303                                     </table>
304                                 </div>
305                             [% END %]
306
307                             [% IF BORROWER_INFO.amountoverzero %]
308                                <div id="opac-user-fines"> <h3>Fines and charges</h3>
309                                     <table class="table table-bordered table-striped">
310                                         <thead><tr><th colspan="2">Amount</th></tr></thead>
311                                         <tbody>
312                                             <tr>
313                                                 <td>You currently owe fines and charges amounting to:</td>
314                                                 <td><a href="/cgi-bin/koha/opac-account.pl">[% BORROWER_INFO.amountoutstanding %]</a></td>
315                                             </tr>
316                                         </tbody>
317                                     </table>
318                                 </div>
319                             [% END %]
320
321                             [% IF BORROWER_INFO.amountlessthanzero %]
322                                 <div id="opac-user-fines">  <h3>Credits</h3>
323                                     <table class="table table-bordered table-striped">
324                                         <thead><tr><th colspan="2">Amount</th></tr></thead>
325                                         <tbody>
326                                             <tr>
327                                                 <td>You have a credit of:</td><td><a href="/cgi-bin/koha/opac-account.pl">[% BORROWER_INFO.amountoutstanding %]</a></td>
328                                             </tr>
329                                         </tbody>
330                                     </table>
331                                 </div>
332                             [% END %]
333                         [% END # / OPACFinesTab %]
334
335                         [% IF relatives %]
336                             <div id="opac-user-relative-issues">
337                                 <table id="opac-user-relative-issues-table" class="table table-bordered table-striped">
338                                     <thead>
339                                         <tr>
340                                             <th class="anti-the">Title</th>
341                                             <th>Due</th>
342                                             <th>Barcode</th>
343                                             <th>Call no.</th>
344                                             <th class="psort">Relative</th>
345                                         </tr>
346                                     </thead>
347
348                                     <tbody>
349                                         [% FOREACH r IN relatives %]
350                                             [% FOREACH i IN r.issues %]
351                                                 <tr>
352                                                     <td>
353                                                         <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% i.item.biblio.biblionumber %]">
354                                                             [% i.item.biblio.title %]
355                                                         </a>
356                                                     </td>
357
358                                                     <td>
359                                                         [% i.date_due | $KohaDates %]
360                                                     </td>
361
362                                                     <td>
363                                                         [% i.item.barcode %]
364                                                     </td>
365
366                                                     <td>
367                                                         [% i.item.itemcallnumber %]
368                                                     </td>
369
370                                                     <td>
371                                                         [% r.firstname %] [% r.surname %]
372                                                     </td>
373                                                 </tr>
374                                             [% END %]
375                                         [% END %]
376                                     </tbody>
377                                 </table>
378                             </div>
379                         [% END %]
380
381                         [% IF ( overdues_count ) %]
382                             <div id="opac-user-overdues">
383                                 <table id="overduest" class="table table-bordered table-striped">
384                                     <caption>Overdues <span class="count">([% overdues_count %] total)</span></caption>
385                                     <!-- OVERDUES TABLE ROWS -->
386                                     <thead>
387                                         <tr>
388                                             [% IF ( JacketImages ) %]<th class="nosort">&nbsp;</th>[% END %]
389                                             <th class="anti-the">Title</th>
390                                             [% UNLESS ( item_level_itypes ) %]<th>Item type</th> [% END %]
391                                             [% IF ( show_barcode ) %]<th>Barcode</th>[% END %]
392                                             <th>Call no.</th>
393                                             <th class="title-string psort">Due</th>
394                                             [% IF ( OpacRenewalAllowed ) %]
395                                                 <th class="nosort">Renew</th>
396                                             [% END %]
397                                             [% IF ( OPACFinesTab ) %]
398                                                 <th>Fines</th>
399                                             [% END %]
400                                         </tr>
401                                     </thead>
402                                     <tbody>
403                                         [% FOREACH OVERDUE IN OVERDUES %]
404                                             <tr>
405                                                 [% IF ( JacketImages ) %]
406                                                     <td class="jacketcell">
407                                                     [% IF ( OPACAmazonCoverImages ) %]
408                                                         [% IF ( OVERDUE.normalized_isbn ) %]
409                                                             <a href="http://www.amazon.com/gp/reader/[% OVERDUE.normalized_isbn %]/ref=sib_dp_pt/002-7879865-0184864#reader-link" title="View on Amazon.com"><img src="https://images-na.ssl-images-amazon.com/images/P/[% OVERDUE.normalized_isbn %].01.THUMBZZZ.jpg" alt="View on Amazon.com" class="item-thumbnail" /></a>
410                                                         [% ELSE %]
411                                                             <a href="#"><span class="no-image">No cover image available</span></a>
412                                                         [% END %]
413                                                     [% END %]
414
415                                                     [% IF ( GoogleJackets ) %]
416                                                         [% IF ( OVERDUE.normalized_isbn ) %]
417                                                             <div style="display:block;" title="Click to view in Google Books" class="[% OVERDUE.normalized_isbn %]" id="gbs-thumbnail[% loop.count %]"></div>
418                                                         [% ELSE %]
419                                                             <a href="http://books.google.com/books?q=[% OVERDUE.title |url %]"><span class="no-image">No cover image available</span></a>
420                                                         [% END %]
421                                                     [% END %]
422
423                                                     [% IF ( BakerTaylorEnabled ) %]
424                                                         [% bt_id = ( OVERDUE.normalized_upc || OVERDUE.normalized_isbn ) %]
425                                                         [% IF ( bt_id ) %]
426                                                             <a href="https://[% BakerTaylorBookstoreURL %][% bt_id %]"><img alt="See Baker &amp; Taylor" src="[% BakerTaylorImageURL %][% bt_id %]" /></a>
427                                                         [% ELSE %]
428                                                             <span class="no-image">No cover image available</span><!-- BakerTaylor needs normalized_upc or normalized_isbn! -->
429                                                         [% END %]
430                                                     [% END %]
431
432                                                     [% IF ( SyndeticsCoverImages ) %]
433                                                         [% IF ( using_https ) %]
434                                                             <img src="https://secure.syndetics.com/index.aspx?isbn=[% OVERDUE.normalized_isbn %]/SC.GIF&amp;client=[% SyndeticsClientCode %]&amp;upc=[% OVERDUE.normalized_upc %]&amp;oclc=[% OVERDUE.normalized_oclc %]&amp;type=xw10" alt="" class="item-thumbnail" />
435                                                         [% ELSE %]
436                                                             <img src="http://www.syndetics.com/index.aspx?isbn=[% OVERDUE.normalized_isbn %]/SC.GIF&amp;client=[% SyndeticsClientCode %]&amp;upc=[% OVERDUE.normalized_upc %]&amp;oclc=[% OVERDUE.normalized_oclc %]&amp;type=xw10" alt="" class="item-thumbnail" />
437                                                         [% END %]
438                                                     [% END %]
439                                                     </td>
440                                                 [% END # /IF jacketcell %]
441
442                                                 <td>
443                                                     <a class="title" href="/cgi-bin/koha/opac-detail.pl?bib=[% OVERDUE.biblionumber %]">[% OVERDUE.title %] [% FOREACH subtitl IN OVERDUE.subtitle %] [% subtitl.subfield %][% END %]
444                                                     </a>
445                                                     <span class="item-details">[% OVERDUE.author %]</span></td>
446
447                                                 [% UNLESS ( item_level_itypes ) %]
448                                                     <td>
449                                                         [% IF ( OVERDUE.imageurl ) %]
450                                                             <img src="[% OVERDUE.imageurl %]" title="[% OVERDUE.description %]" alt="[% OVERDUE.description %]" />
451                                                         [% END %] [% OVERDUE.description %]
452                                                     </td>
453                                                 [% END %]
454                                                 [% IF ( show_barcode ) %]
455                                                     <td>
456                                                         <span class="tdlabel">Barcode:</span>
457                                                         [% OVERDUE.barcode %]
458                                                     </td>
459                                                 [% END %]
460                                                 <td>
461                                                     <span class="tdlabel">Call no.:</span>
462                                                     [% OVERDUE.itemcallnumber %]
463                                                 </td>
464                                                 <td>
465                                                     <span title="[% OVERDUE.date_due %]">
466                                                         <span class="tdlabel">Date due:</span>
467                                                         [% OVERDUE.date_due_sql | $KohaDates as_due_date => 1 %]
468                                                     </span>
469                                                 </td>
470                                                 [% IF ( OpacRenewalAllowed ) %]
471                                                     <td>
472                                                         [% IF ( OVERDUE.debarred ) %]
473                                                             Account frozen
474                                                         [% ELSIF ( OVERDUE.status ) %]
475                                                             [% IF ( canrenew ) %]
476                                                                 <a href="/cgi-bin/koha/opac-renew.pl?from=opac_user&amp;item=[% OVERDUE.itemnumber %]&amp;bornum=[% OVERDUE.borrowernumber %]">Renew</a>
477                                                             [% END %]
478                                                                 <span class="renewals">([% OVERDUE.renewsleft %] of [% OVERDUE.renewsallowed %] renewals remaining)</span>
479                                                         [% ELSIF ( OVERDUE.norenew_overdue ) %]
480                                                             Not allowed<span class="renewals">(overdue)</span>
481                                                         [% ELSIF ( OVERDUE.onreserve ) %]
482                                                             On hold
483                                                         [% ELSE %]
484                                                             No renewals left
485                                                         [% END %]
486                                                     </td>
487                                                 [% END %]
488                                                 [% IF ( OPACFinesTab ) %]
489                                                     <td>
490                                                         <span class="tdlabel">Fines:</span>
491                                                         [% IF ( OVERDUE.charges ) %]
492                                                             Yes
493                                                         [% ELSE %]
494                                                             No
495                                                         [% END %]
496                                                     </td>
497                                                 [% END %]
498                                             </tr>
499                                         [% END %]
500                                     </tbody>
501                                 </table>
502                             </div> <!-- / #opac-user-overdues -->
503                         [% END # /overdues_count %]
504
505
506                         [% IF ( RESERVES.count ) %]
507                             <div id="opac-user-holds">
508                                 <table id="holdst" class="table table-bordered table-striped">
509                                     <caption>Holds <span class="count">([% RESERVES.count %] total)</span></caption>
510                                     <!-- RESERVES TABLE ROWS -->
511                                     <thead>
512                                         <tr>
513                                             <th class="anti-the">Title</th>
514                                             <th class="psort">Placed on</th>
515                                             <th>Expires on</th>
516                                             <th>Pick up location</th>
517                                             [% IF ( showpriority ) %]
518                                                 <th>Priority</th>
519                                             [% END %]
520                                             <th>Status</th>
521                                             [% IF SuspendHoldsOpac %]
522                                                  <th class="nosort" >Suspend</th>
523                                             [% END %]
524                                             <th class="nosort">Modify</th>
525                                         </tr>
526                                     </thead>
527                                     <tbody>
528                                     [% FOREACH RESERVE IN RESERVES %]
529                                         [% IF ( RESERVE.is_waiting ) %]
530                                             [% IF ( RESERVE.is_at_destination ) %]
531                                                 [% IF ( RESERVE.is_found ) %]
532                                                     <tr class="reserved">
533                                                 [% ELSE %]
534                                                     <tr>
535                                                 [% END %]
536                                             [% ELSE %]
537                                                 <tr class="transfered">
538                                             [% END %]
539                                         [% ELSE %]
540                                             <tr>
541                                         [% END %]
542                                             <td class="title">
543                                                 <a class="title" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% RESERVE.biblionumber %]">
544                                                     [% RESERVE.biblio.title %]
545                                                     [% FOREACH s IN RESERVE.biblio.subtitles %]
546                                                         [% s %]
547                                                     [% END %]
548                                                     [% RESERVE.item.enumchron %]
549                                                 </a>
550                                                 [% RESERVE.biblio.author %]
551                                             </td>
552                                             <td class="reservedate">
553                                                 <span title="[% RESERVE.reservedate %]">
554                                                     <span class="tdlabel">Hold date:</span>
555                                                     [% RESERVE.reservedate | $KohaDates %]
556                                                 </span>
557                                             </td>
558                                             <td class="expirationdate">
559                                                 [% IF ! RESERVE.found %]
560                                                     [% IF ( RESERVE.expirationdate ) %]
561                                                         <span>
562                                                             <span class="tdlabel">Expiration:</span>
563                                                                 [% RESERVE.expirationdate | $KohaDates %]
564                                                         </span>
565                                                     [% ELSE %]
566                                                         <span class="tdlabel">Expiration:</span>
567                                                         Never expires
568                                                     [% END %]
569                                                 [% ELSE %]
570                                                     -
571                                                 [% END %]
572                                             </td>
573                                             <td class="branch">
574                                                 <span class="tdlabel">Pick up location:</span>
575                                                 [% RESERVE.branch.branchname %]
576                                             </td>
577                                             [% IF ( showpriority ) %]
578                                                  <td class="priority">
579                                                     <span class="tdlabel">Priority:</span>
580                                                     [% RESERVE.priority %]
581                                                 </td>
582                                             [% END %]
583                                             <td class="status">
584                                                 <span class="tdlabel">Status:</span>
585                                                 [% IF ( RESERVE.is_waiting ) %]
586                                                     [% IF ( RESERVE.is_at_destination ) %]
587                                                         [% IF ( RESERVE.found ) %]
588                                                             Item waiting at <b> [% RESERVE.branch.branchname %]</b>
589                                                             [% IF ( RESERVE.waitingdate ) %]
590                                                                 since [% RESERVE.waitingdate | $KohaDates %]
591                                                                 [% IF RESERVE.waiting_expires_on %]
592                                                                     until [% RESERVE.waiting_expires_on | $KohaDates %]
593                                                                 [% END %]
594                                                             [% END %]
595                                                             <input type="hidden" name="pickup" value="[% RESERVE.branchcode %]" />
596                                                         [% ELSE %]
597                                                             Item waiting to be pulled from <b> [% RESERVE.wbrname %]</b>
598                                                         [% END %]
599                                                     [% ELSE %]
600                                                         Item in transit to <b> [% RESERVE.wbrname %]</b> <input type="hidden" name="pickup" value="[% RESERVE.wbrcd %]" />
601                                                     [% END %]
602                                                 [% ELSE %]
603                                                     [% IF ( RESERVE.is_in_transit ) %]
604                                                         Item in transit from <b> [% RESERVE.frombranch %]</b> since
605                                                         [% RESERVE.datesent | $KohaDates %]
606                                                     [% ELSIF ( RESERVE.suspend ) %]
607                                                         Suspended [% IF ( RESERVE.suspend_until ) %] until [% RESERVE.suspend_until %] [% END %]
608                                                     [% ELSE %]
609                                                         Pending
610                                                     [% END %]
611                                                 [% END %]
612                                             </td>
613                                             [% IF SuspendHoldsOpac %]
614                                                 <td>
615                                                     [% IF ( RESERVE.is_cancelable ) %]
616                                                         [% IF RESERVE.suspend %]
617                                                             <form class="form-inline" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post">
618                                                                 <input type="hidden" name="reserve_id" value="[% RESERVE.reserve_id %]" />
619                                                                 <button class="btn btn-link" type="submit" name="submit"><i class="icon-play"></i> Resume</button>
620                                                             </form>
621                                                         [% ELSE %]
622                                                             [% IF AutoResumeSuspendedHolds %]
623                                                                 <a class="btn btn-link js-show" href="#suspendModal[% RESERVE.reserve_id %]" role="button" data-toggle="modal"><i class="icon-pause"></i> Suspend</a>
624                                                                 [% # hold suspend modal form %]
625                                                                 <div id="suspendModal[% RESERVE.reserve_id %]" class="modal-nojs" tabindex="-1" role="dialog" aria-labelledby="suspendModal[% RESERVE.reserve_id %]Label" aria-hidden="true">
626                                                                     <form class="form-inline" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post">
627                                                                         <div class="modal-header">
628                                                                             <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
629                                                                             [% IF RESERVE.suspend %]
630                                                                                 <h3 id="suspendModal[% RESERVE.reserve_id %]Label">Resume your hold on <i>[% RESERVE.biblio.title %]</i></h3>
631                                                                             [% ELSE %]
632                                                                                 <h3 id="suspendModal[% RESERVE.reserve_id %]Label">Suspend your hold on <i>[% RESERVE.biblio.title %]</i></h3>
633                                                                             [% END %]
634                                                                         </div>
635                                                                         <div class="modal-body">
636                                                                             <input type="hidden" name="reserve_id" value="[% RESERVE.reserve_id %]" />
637                                                                             <label for="suspend_until_[% RESERVE.reserve_id %]">Suspend until:</label>
638                                                                             <input name="suspend_until" id="suspend_until_[% RESERVE.reserve_id %]" class="suspend-until" size="10" />
639                                                                             [% INCLUDE 'date-format.inc' %]
640                                                                             <p class="js-show"><a href="#" onclick="document.getElementById('suspend_until_[% RESERVE.reserve_id %]').value='';return false;">Clear date to suspend indefinitely</a></p>
641                                                                             <button class="btn btn-mini js-hide" type="submit" name="submit">Suspend</button>
642                                                                         </div>
643                                                                         <div class="modal-footer">
644                                                                             <button class="btn btn-primary" type="submit" name="submit">Suspend</button>
645                                                                             <a href="#" data-dismiss="modal" aria-hidden="true" class="cancel">Cancel</a>
646                                                                         </div>
647                                                                     </form>
648                                                                 </div>  <!-- /#suspendModal[% RESERVE.reserve_id %] -->
649                                                             [% ELSE %]
650                                                                 <form class="form-inline" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post">
651                                                                     <input type="hidden" name="reserve_id" value="[% RESERVE.reserve_id %]" />
652                                                                     <button class="btn btn-link" type="submit" name="submit"><i class="icon-pause"></i> Suspend</button>
653                                                                 </form>
654                                                             [% END # / IF AutoResumeSuspendedHolds %]
655                                                         [% END # / IF RESERVE.suspend %]
656                                                     [% END # / IF ( RESERVE.is_cancelable )%]
657                                                 </td>
658                                             [% END # / IF SuspendHoldsOpac %]
659                                             <td class="modify">
660                                                 [% IF ( RESERVE.is_cancelable ) %]
661                                                     <form action="/cgi-bin/koha/opac-modrequest.pl" method="post">
662                                                     <input type="hidden" name="biblionumber" value="[% RESERVE.biblionumber %]" />
663                                                     <input type="hidden" name="reserve_id" value="[% RESERVE.reserve_id %]" />
664                                                     <button type="submit" name="submit" class="btn btn-mini btn-danger" onclick="return confirmDelete(MSG_CONFIRM_DELETE_HOLD);"><i class="icon-remove icon-white"></i> Cancel</button></form>
665                                                 [% END %]
666                                             </td>
667                                         </tr>
668                                     [% END # /FOREACH RESERVES %]
669                                 </tbody>
670                             </table>
671
672                             [% IF SuspendHoldsOpac %]
673                                 <div>
674                                     <form class="form-inline" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post">
675                                         <button type="submit" name="submit" class="btn" onclick="return confirmDelete(MSG_CONFIRM_SUSPEND_HOLDS);"><i class="icon-pause"></i> Suspend all holds</button>
676                                         <input type="hidden" name="suspend" value="1" />
677
678                                         [% IF AutoResumeSuspendedHolds %]
679                                             <label for="suspend_until"> until </label>
680                                             <input name="suspend_until" id="suspend_until" class="suspend-until" readonly="readonly" size="10" />
681                                             <a href="#" style="font-size:85%;text-decoration:none;" onclick="document.getElementById('suspend_until').value='';return false;">Clear date to suspend indefinitely</a>
682                                         [% END %]
683                                     </form>
684                                 </div>
685                                 <br/>
686                                 <div>
687                                     <form action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post">
688                                         <button type="submit" name="submit" class="btn" onclick="return confirmDelete(MSG_CONFIRM_RESUME_HOLDS);"><i class="icon-play"></i> Resume all suspended holds</button>
689                                         <input type="hidden" name="suspend" value="0" />
690                                     </form>
691                                 </div>
692                             [% END %]
693                         </div> <!-- / #opac-user-holds -->
694                         [% END # / #RESERVES.count %]
695                     </div> <!-- /#opac-user-views -->
696                 </div> <!-- /#userdetails -->
697             </div> <!-- /.span10 -->
698         </div> <!-- /.row-fluid -->
699     </div> <!-- /.container-fluid -->
700 </div> <!-- /#main -->
701
702 [% INCLUDE 'opac-bottom.inc' %]
703
704
705 [% BLOCK jsinclude %]
706     [% INCLUDE 'calendar.inc' %]
707     [% INCLUDE 'datatables.inc' %]
708     <script type="text/JavaScript">
709         //<![CDATA[
710         var MSG_CONFIRM_DELETE_HOLD   = _("Are you sure you want to cancel this hold?");
711         var MSG_CONFIRM_SUSPEND_HOLDS = _("Are you sure you want to suspend all holds?");
712         var MSG_CONFIRM_RESUME_HOLDS  = _("Are you sure you want to resume all suspended holds?");
713
714         $(document).ready(function(){
715             $('#opac-user-views').tabs();
716             $(".js-show").show();
717             $(".js-hide").hide();
718             $(".modal-nojs").addClass("modal").addClass("hide").removeClass("modal-nojs");
719             $(".suspend-until").prop("readonly",1);
720
721             var dTables = $("#checkoutst,#holdst,#overduest,#opac-user-relative-issues-table");
722             dTables.each(function(){
723                 var thIndex = $(this).find("th.psort").index();
724                 $(this).dataTable($.extend(true, {}, dataTablesDefaults, {
725                     "aaSorting" : [[ thIndex, 'asc' ]],
726                     "aoColumnDefs": [
727                         { "aTargets": [ "nosort" ],"bSortable": false,"bSearchable": false },
728                         { "sType": "anti-the", "aTargets" : [ "anti-the" ] },
729                         { "sType": "title-string", "aTargets" : [ "title-string" ] }
730                     ]
731                 }));
732             });
733
734             [% IF ( GoogleJackets ) %]KOHA.Google.GetCoverFromIsbn();[% END %]
735             [% IF ( OpacRenewalAllowed && canrenew && !userdebarred ) %]
736                 $("#renewselected").submit(function(){
737                     valid = false;
738                     $("input[type=checkbox]").each(function(){
739                         if($(this).is(':checked')){
740                             valid = true;
741                         }
742                     });
743                     if(!valid){
744                         alert(_("Nothing has been selected. Check the box for each item you want to renew"));
745                     }
746                     return valid;
747                 });
748                 $("body").on("click","#renewselected_link",function(e){
749                     e.preventDefault();
750                     $("#renewselected").submit();
751                 });
752                 $("body").on("click","#renewall_link",function(e){
753                     e.preventDefault();
754                     $("#renewall").submit();
755                 });
756                 [% IF ( canrenew && !userdebarred && OpacRenewalAllowed && !( borrower.is_expired && borrower.BlockExpiredPatronOpacActions ) ) %]
757                     $("#checkoutst caption").append("<div id=\"renewcontrols\"><a id=\"renewselected_link\" href=\"#\">"+_("Renew selected")+"</a> <a id=\"renewall_link\" href=\"#\">"+_("Renew all")+"</a></div>");
758                 [% END %]
759             [% END %]
760
761             $( ".suspend-until" ).datepicker({ minDate: 1 }); // Require that "until date" be in the future
762         });
763         //]]>
764     </script>
765 [% END %]