Bug 26505: Suspend hold modal broken in the OPAC
[koha.git] / koha-tmpl / opac-tmpl / bootstrap / en / modules / opac-user.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE KohaDates %]
5 [% USE Branches %]
6 [% USE ItemTypes %]
7 [% USE Price %]
8 [% SET AdlibrisEnabled = Koha.Preference('AdlibrisCoversEnabled') %]
9 [% SET AdlibrisURL = Koha.Preference('AdlibrisCoversURL') %]
10
11 [% SET borrower_club_enrollments =  logged_in_user.get_club_enrollments(1) %]
12 [% SET borrower_enrollable_clubs = logged_in_user.get_enrollable_clubs(1,1) %]
13
14 [% INCLUDE 'doc-head-open.inc' %]
15 <title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog &rsaquo; Your library home</title>
16 [% INCLUDE 'doc-head-close.inc' %]
17 [% BLOCK cssinclude %][% END %]
18 </head>
19 [% INCLUDE 'bodytag.inc' bodyid='opac-user' bodyclass='scrollto' %]
20 [% INCLUDE 'masthead.inc' %]
21
22 [% IF Koha.Preference('AmazonAssocTag') %]
23     [% AmazonAssocTag = '?tag=' _ Koha.Preference('AmazonAssocTag') %]
24 [% ELSE %]
25     [% AmazonAssocTag = '' %]
26 [% END %]
27
28 <div class="main">
29     <nav aria-label="breadcrumb">
30         <ul class="breadcrumb">
31             <li class="breadcrumb-item">
32                 <a href="/cgi-bin/koha/opac-main.pl">Home</a>
33             </li>
34             <li class="breadcrumb-item">
35                 <a href="/cgi-bin/koha/opac-user.pl">[% INCLUDE 'patron-title.inc' patron = logged_in_user %]</a>
36             </li>
37             <li class="breadcrumb-item active" aria-current="page">
38                 <a href="#">Your summary</a>
39             </li>
40         </ul>
41     </nav>
42
43     <div class="container-fluid">
44         <div class="row">
45             <div class="col col-lg-2 order-2 order-lg-1">
46                 <div id="navigation">
47                     [% INCLUDE 'navigation.inc' IsPatronPage=1 %]
48                 </div>
49             </div>
50             <div class="col-md-12 col-lg-10 order-1 order-lg-2">
51                 <div id="userdetails" class="maincontent">
52
53                     [% INCLUDE 'opac-note.inc' %]
54
55                     <h2>Hello, [% INCLUDE 'patron-title.inc' patron = logged_in_user %]
56                     </h2>
57
58                     <p><a href="/cgi-bin/koha/opac-main.pl?logout.x=1">Click here if you're not [% INCLUDE 'patron-title.inc' patron = logged_in_user %]</a></p>
59
60                     [% 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 %]
61
62                     [% IF failed_holds %]
63                         <div class="alert alert-info">
64                             <h3>Notice:</h3>
65                             <p>One or more holds were not placed due to existing holds.</p>
66                         </div>
67                     [% END %]
68
69                     [% IF ( borrower.blockedonfines ) %]
70                         <div class="alert alert-warning" id="blockedonfines">
71                             <strong>Please note:</strong><span> Your account has outstanding fees & charges of [% amountoutstanding | $Price %]. Holds are blocked because your fine balance is over the limit.</span>
72                         </div>
73                     [% END %]
74
75                     [% IF ( borrower.warndeparture ) %]
76                         <div class="alert alert-warning" id="warndeparture">
77                             <strong>Please note:</strong><span> Your card will expire on <span id="warndeparture_date">[% borrower.warndeparture | $KohaDates %]</span>. Please contact the library for more information.</span>
78                                 [% IF ( borrower.returnbeforeexpiry ) %]<span id="warndeparture_returnbeforeexpiry"> Also note that you must return all checked out items before your card expires.</span>[% END %]
79                         </div>
80                     [% END %]
81
82                     [% IF ( borrower.warnexpired ) %]
83                         <div class="alert alert-warning" id="warnexpired">
84                             <strong>Please note: </strong><span>Your account has expired as of [% borrower.warnexpired | $KohaDates %]. Please contact the library if you wish to renew your account.</span>
85                         </div>
86                     [% END %]
87
88                     [% IF ( RENEW_ERROR ) %]
89                         <div class="alert alert-warning">
90                             <strong>Please note:</strong>
91                                 Your loan renewal failed because of the following reason(s):
92                                 <ul>
93                                     [% FOREACH error IN RENEW_ERROR.split('\|') %]
94                                         [% IF error == 'card_expired' %]
95                                             <li>Your account has expired. Please contact the library for more information.</li>
96                                         [% ELSIF error == 'too_many' %]
97                                             <li>You have renewed this item the maximum number of times allowed.</li>
98                                         [% ELSIF error == 'too_soon' %]
99                                             <li>It is too soon after the checkout date for this item to be renewed.</li>
100                                         [% ELSIF error == 'on_reserve' %]
101                                             <li>This item is on hold for another borrower.</li>
102                                         [% ELSIF error == 'item_denied_renewal' %]
103                                             <li>Item renewal is not allowed.</li>
104                                         [% END %]
105                                     [% END %]
106                                 </ul>
107                         </div>
108                     [% END %]
109
110                     [% IF ( patron_flagged ) %]
111                         <div class="alert alert-warning">
112                             <ul>
113                                 [% IF ( userdebarred ) %]
114                                     [% IF ( discharge_available ) %]
115                                         <li id="discharged">
116                                             <strong>Please note:</strong> Your account is frozen because it has been discharged. <a href="/cgi-bin/koha/opac-discharge.pl?op=get">Get your discharge</a>
117                                         </li>
118                                     [% ELSE %]
119                                         <li id="userdebarred"><strong>Please note:</strong> Your account has been frozen.
120                                         [% IF ( borrower.debarredcomment ) %]
121                                             Comment:
122                                             <span id="userdebarred_comment">
123                                                 <strong>
124                                                     [% IF borrower.debarredcomment.search('OVERDUES_PROCESS') %]
125                                                         Restriction added by overdues process [% borrower.debarredcomment.remove('OVERDUES_PROCESS ') | html_line_break %]
126                                                     [% ELSE %]
127                                                         [% borrower.debarredcomment | html_line_break %]
128                                                     [% END %]
129                                                 </strong>
130                                             </span>
131                                         [% END %]
132                                         [% IF ( borrower.userdebarreddate && debarred_date != '9999-12-31' ) %]
133                                             End date:
134                                             <span id="userdebarred_date">[% borrower.userdebarreddate | $KohaDates %]</span>
135                                         [% END %]
136
137                                         <em>Usually the reason for freezing an account is old overdues or damage fees. If your account shows to be clear, please contact the library.</em> <a href="/cgi-bin/koha/opac-account.pl">Go to your account page</a></li>
138                                     [% END %]
139                                 [% END %]
140                                 [% IF ( borrower.gonenoaddress ) %]
141                                     <li id="gonenoaddress"><strong>Please note:</strong> According to our records, we don't have up-to-date contact information. Please contact the library.
142                                 <a href="/cgi-bin/koha/opac-memberentry.pl">[% IF ( Koha.Preference('OPACPatronDetails') ) %]Update your contact information[% ELSE %]Go to your contact information[% END %]</a>
143                                 [% IF ( Koha.Preference('OPACPatronDetails') ) %]<em>(Please note: there may be a delay in restoring your account if you submit online.)</em>[% END %]
144                                     </li>
145                                 [% END %]
146                                 [% IF ( borrower.lost ) %]
147                                     <li id="lost"><strong>Please note: </strong> Your library card has been marked as lost or stolen. <em>If this is an error, please contact the library.</em></li>
148                                 [% END %]
149                                 [% IF ( renewal_blocked_fines.defined ) && ( OpacRenewalAllowed ) %]
150                                     <li id="renewal_blocked_fines"><strong>Please note: </strong>You cannot renew your books online. Reason: [% IF ( renewal_blocked_fines ) > 0  %]Your fines exceed <span id="renewal_blocked_fines_amount">[% renewal_blocked_fines | $Price %]</span>.[% ELSE %]You have fines.[% END %]
151                                 [% END %]
152                             </ul>
153                         </div>
154                     [% END # / IF patron_flagged %]
155
156                     <div class="alert alert-info" id="notesaved" style="display:none;"></div>
157
158                     [% IF Koha.Preference('OPACMySummaryNote') %]
159                         <div id="opac-my-summary-note">[% Koha.Preference('OPACMySummaryNote') | $raw %]</div>
160                     [% END %]
161
162                     [% IF Koha.Preference('AllowPatronToControlAutorenewal') %]
163                     <form id="autorenewal_option" action="/cgi-bin/koha/opac-user.pl" method="post">
164                             <label for="yes-autorenew_checkouts">
165                                 Allow auto-renewal:
166                             </label>
167                                 [% IF ( borrower.autorenew_checkouts ) %]
168                                     <label class="radio inline" for="yes-autorenew_checkouts">
169                                         Yes
170                                         <input type="radio" id="yes-autorenew_checkouts" name="borrower_autorenew_checkouts" value="1" checked="checked" />
171                                     </label>
172
173                                     <label class="radio inline" for="no-autorenew_checkouts">
174                                         No
175                                         <input type="radio" id="no-autorenew_checkouts" name="borrower_autorenew_checkouts" value="0" />
176                                     </label>
177                                 [% ELSE %]
178                                     <label class="radio inline" for="yes-autorenew_checkouts">
179                                         Yes
180                                         <input type="radio" id="yes-autorenew_checkouts" name="borrower_autorenew_checkouts" value="1" />
181                                     </label>
182                                     <label class="radio inline" for="no-autorenew_checkouts">
183                                         No
184                                         <input type="radio" id="no-autorenew_checkouts" name="borrower_autorenew_checkouts" value="0" checked="checked" />
185                                     </label>
186                                 [% END %]
187                         <input type="hidden" name="csrf_token" value="[% csrf_token | html %]" />
188                         <input type="hidden" name="update_arc" value="1" />
189                         <input type="submit" value="Update auto-renewal preference" />
190                     </form>
191                     [% END %]
192
193                     <div id="opac-user-views" class="toptabs">
194                         <ul>
195                             <li><a href="#opac-user-checkouts">Checked out ([% issues_count | html %])</a></li>
196                             [% IF relatives %]<li><a href="#opac-user-relative-issues">Relatives' checkouts</a></li>[% END %]
197                             [% IF ( overdues_count ) %]<li><a href="#opac-user-overdues">Overdue ([% overdues_count | html %])</a></li>[% END %]
198                             [% IF ( OPACFinesTab ) %]
199                             [% IF ( amountoutstanding > 0 ) %]<li><a href="#opac-user-fines">Charges ([% amountoutstanding | $Price %])</a></li>[% END %]
200                                 [% IF ( amountoutstanding < 0 ) %]<li><a href="#opac-user-fines">Credits ([% amountoutstanding * -1 | $Price %])</a></li>[% END %]
201                                 [% IF relatives_with_fines %]<li><a href="#opac-user-relative-fines">Relatives' fines</a></li>[% END %]
202                             [% END %]
203
204                             [% IF borrower_club_enrollments.count || borrower_enrollable_clubs.count %]
205                                 <li>
206                                     <a id="opac-user-clubs-tab-link" href="#opac-user-clubs">
207                                         Clubs ([% borrower_club_enrollments.count || 0 | html %]/[% borrower_enrollable_clubs.count || 0 | html %])
208                                     </a>
209                                 </li>
210                             [% END %]
211
212                             [% IF ( RESERVES.count ) %]<li><a href="#opac-user-holds">Holds ([% RESERVES.count | html %])</a></li>[% END %]
213                             [% IF Koha.Preference('ArticleRequests') && logged_in_user.article_requests_current %]<li><a href="#opac-user-article-requests">Article requests ([% logged_in_user.article_requests_current.count | html %])</a></li>[% END %]
214                             [% IF ( OverDriveCirculation ) %]
215                             <li><a href="#opac-user-overdrive">OverDrive Account</a></li>
216                             [% END %]
217                             [% IF ( RecordedBooksCirculation ) %]
218                             <li><a href="#opac-user-recordedbooks">RecordedBooks Account</a></li>
219                             [% END %]
220                         </ul>
221
222                         <div id="opac-user-overdrive">
223                         </div>
224                         <div id="opac-user-recordedbooks">
225                         </div>
226                         <div id="opac-user-checkouts">
227                             [% IF ( issues_count ) %]
228                                 <form id="renewselected" action="/cgi-bin/koha/opac-renew.pl" method="post">
229                                     <input type="hidden" name="borrowernumber" value="[% borrowernumber | html %]">
230                                     <input type="hidden" name="from" value="opac_user" />
231                                     <table id="checkoutst" class="table table-bordered table-striped">
232                                         <caption>[% issues_count | html %] Item(s) checked out</caption>
233                                         <thead>
234                                             <tr>
235                                                 [% IF ( JacketImages || AdlibrisEnabled ) %]<th class="nosort">&nbsp;</th>[% END %]
236                                                 <th class="anti-the">Title</th>
237                                                 <th>Author</th>
238                                                 <th class="title-string psort">Due</th>
239                                                 [% UNLESS ( item_level_itypes ) %]
240                                                     <th>Item type</th>
241                                                 [% END %]
242                                                 [% IF ( show_barcode ) %]
243                                                     <th>Barcode</th>
244                                                 [% END %]
245                                                     <th>Call no.</th>
246                                                 [% IF ( OpacRenewalAllowed && !( logged_in_user.is_expired && logged_in_user.category.effective_BlockExpiredPatronOpacActions ) ) %]
247                                                     <th class="nosort">Renew</th>
248                                                 [% END %]
249                                                 [% IF ( OPACFinesTab ) %]
250                                                     <th>Fines</th>
251                                                 [% END %]
252                                                 [% IF ( OPACMySummaryHTML ) %]
253                                                     <th class="nosort">Links</th>
254                                                 [% END %]
255                                                 [% IF ( Koha.Preference('AllowCheckoutNotes') ) %]
256                                                     <th class="nosort">Note</th>
257                                                 [% END %]
258                                             </tr>
259                                         </thead>
260                                         <tbody>
261                                             [% FOREACH ISSUE IN ISSUES %]
262                                                 [% IF ( ISSUE.overdue ) %]<tr class="overdue">[% ELSE %]<tr>[% END %]
263                                                 [% IF ( JacketImages || AdlibrisEnabled ) %]<td class="jacketcell">
264                                                     [% IF ( AdlibrisEnabled && ISSUE.normalized_isbn ) %]
265                                                         <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% ISSUE.biblionumber | uri %]"><img src="[% AdlibrisURL | url %]?isbn=[% ISSUE.normalized_isbn | uri %]" class="adlibris-cover" alt="Adlibris cover image" /></a>
266                                                     [% END %]
267                                                     [% IF ( OPACAmazonCoverImages ) %]
268                                                         [% IF ( ISSUE.normalized_isbn ) %]
269                                                             <a href="http://www.amazon.com/gp/reader/[% ISSUE.normalized_isbn | uri %][% AmazonAssocTag | uri %]#reader-link" title="View on Amazon.com"><img src="https://images-na.ssl-images-amazon.com/images/P/[% ISSUE.normalized_isbn | html %].01.THUMBZZZ.jpg" alt="View on Amazon.com" class="item-thumbnail"/></a>
270                                                         [% ELSE %]
271                                                             <a href="#"><span class="no-image">No cover image available</span></a>
272                                                         [% END %]
273                                                     [% END %]
274
275                                                     [% IF ( GoogleJackets ) %]
276                                                         [% IF ( ISSUE.normalized_isbn ) %]
277                                                             <div style="display:block;" title="Click to view in Google Books" class="[% ISSUE.normalized_isbn | html %]" id="gbs-thumbnail[% loop.count | html %]"></div>
278                                                         [% ELSE %]
279                                                             <a href="http://books.google.com/books?q=[% ISSUE.title |url %]"><span class="no-image">No cover image available</span></a>
280                                                         [% END %]
281                                                     [% END %]
282
283                                                     [% IF ( BakerTaylorEnabled ) %]
284                                                         [% bt_id = ( ISSUE.normalized_upc || ISSUE.normalized_isbn ) %]
285                                                         [% IF ( bt_id ) %]
286                                                             <a href="https://[% BakerTaylorBookstoreURL | uri %][% bt_id | uri %]"><img alt="See Baker &amp; Taylor" src="[% BakerTaylorImageURL | html %][% bt_id | html %]" /></a>
287                                                         [% ELSE %]
288                                                             <span class="no-image">No cover image available</span><!-- BakerTaylor needs normalized_upc or normalized_isbn! -->
289                                                         [% END %]
290                                                     [% END %]
291
292                                                     [% IF Koha.Preference('OPACCustomCoverImages') AND Koha.Preference('CustomCoverImagesURL') %]
293                                                         <a class="custom_cover_image" href="[% ISSUE.biblio_object.custom_cover_image_url | url %]"><img alt="Cover image" src="[% ISSUE.biblio_object.custom_cover_image_url | url %]" /></a>
294                                                     [% END %]
295
296                                                     [% IF ( SyndeticsEnabled && SyndeticsCoverImages ) %]
297                                                         <img src="https://secure.syndetics.com/index.aspx?isbn=[% ISSUE.normalized_isbn | html %]/SC.GIF&amp;client=[% SyndeticsClientCode | html %]&amp;type=xw10&amp;upc=[% ISSUE.normalized_upc | html %]&amp;oclc=[% ISSUE.normalized_oclc | html %]" alt="" class="item-thumbnail" />
298                                                     [% END %]
299
300                                                 </td>[% END # / IF JacketImages %]
301
302                                                 <td class="title">
303                                                     <a class="title" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% ISSUE.biblionumber | html %]">[% INCLUDE 'biblio-title.inc' biblio=ISSUE %]</a>
304                                                     [% IF ( ISSUE.enumchron ) %] [% ISSUE.enumchron | html %][% END %]
305
306                                                     [% IF ( ISSUE.onsite_checkout ) %] <em class="onsite_checkout">(On-site checkout)</em>[% END %]
307
308                                                     [% IF ( Koha.Preference('OpacStarRatings') == 'all' ) %]
309                                                         [% INCLUDE 'user-star-ratings.inc' item=ISSUE %]
310                                                     [% END %]
311                                                 </td>
312
313                                                 <td class="author">[% ISSUE.author | html %]</td>
314                                                 [% IF ( ISSUE.overdue ) %]
315                                                     <td class="date_due overdue">
316                                                         <span title="[% ISSUE.date_due | html %]">
317                                                             <span class="tdlabel">Date due:</span>
318                                                             [% ISSUE.date_due | $KohaDates  as_due_date => 1 %]
319                                                         </span>
320                                                     </td>
321                                                 [% ELSE %]
322                                                     <td class="date_due">
323                                                         <span title="[% ISSUE.date_due | html %]">
324                                                             <span class="tdlabel">Date due:</span>
325                                                             [% ISSUE.date_due | $KohaDates  as_due_date => 1 %]
326                                                         </span>
327                                                     </td>
328                                                 [% END %]
329                                                 [% UNLESS ( item_level_itypes ) %]
330                                                     <td class="itype">
331                                                         <span class="tdlabel">Item type:</span>
332                                                         [% IF ( ISSUE.imageurl && !Koha.Preference('OpacNoItemTypeImages') ) %]
333                                                             <img src="[% ISSUE.imageurl | html %]" title="[% ISSUE.description | html %]" alt="[% ISSUE.description | html %]" />
334                                                         [% END %] [% ISSUE.description | html %]
335                                                     </td>
336                                                 [% END %]
337                                                 [% IF ( show_barcode ) %]
338                                                     <td class="barcode">
339                                                         <span class="tdlabel">Barcode:</span>
340                                                         [% ISSUE.barcode | html %]
341                                                     </td>
342                                                 [% END %]
343                                                 <td class="call_no">
344                                                     <span class="tdlabel">Call no.:</span>
345                                                     [% ISSUE.itemcallnumber | html %]
346                                                 </td>
347                                                 [% IF ( OpacRenewalAllowed && !( logged_in_user.is_expired && logged_in_user.category.effective_BlockExpiredPatronOpacActions ) ) %]
348                                                     <td class="renew">
349                                                     [% IF ISSUE.renewed %]<span class="blabel label-success">Renewed!</span><br />[% END %]
350                                                     [% IF ( ISSUE.status ) %]
351                                                         [% IF ( canrenew ) %]
352                                                             <input type="checkbox" name="item" value="[% ISSUE.itemnumber | uri %]"/> <a href="/cgi-bin/koha/opac-renew.pl?from=opac_user&amp;item=[% ISSUE.itemnumber | uri %]&amp;borrowernumber=[% ISSUE.borrowernumber | uri %]">Renew</a>
353                                                         [% END %]
354                                                         [% IF ISSUE.renewalfee > 0 %]
355                                                             <span class="renewalfee label label-warning">Fee for item type '[% ItemTypes.GetDescription( ISSUE.renewalitemtype) | html %]': [% ISSUE.renewalfee | $Price %]</span>
356                                                         [% END %]
357                                                         [% IF ISSUE.itemtype_object.rentalcharge_daily > 0 %]
358                                                             <span class="renewalfee label label-warning">[% ISSUE.itemtype_object.rentalcharge_daily | $Price %] per day</span>
359                                                         [% END %]
360                                                         [% IF ISSUE.itemtype_object.rentalcharge_hourly > 0 %]
361                                                             <span class="renewalfee label label-warning">[% ISSUE.itemtype_object.rentalcharge_hourly | $Price %] per hour</span>
362                                                         [% END %]
363                                                         <span class="renewals">([% ISSUE.renewsleft | html %] of [% ISSUE.renewsallowed | html %] renewals remaining)</span>
364                                                     [% ELSIF ( ISSUE.on_reserve ) %]
365                                                         Not renewable <span class="renewals">(on hold)</span>
366                                                     [% ELSIF ( ISSUE.too_many ) %]
367                                                         Not renewable
368                                                     [% ELSIF ( ISSUE.norenew_overdue ) %]
369                                                         Not allowed <span class="renewals">(overdue)</span>
370                                                     [% ELSIF ( ISSUE.auto_too_late ) %]
371                                                         No longer renewable
372                                                     [% ELSIF ISSUE.auto_too_much_oweing %]
373                                                         Automatic renewal failed, you have unpaid fines.
374                                                         <span class="renewals">([% ISSUE.renewsleft | html %] of [% ISSUE.renewsallowed | html %] renewals remaining)</span>
375                                                     [% ELSIF ISSUE.auto_account_expired %]
376                                                         Automatic renewal failed, your account is expired.
377                                                         <span class="renewals">([% ISSUE.renewsleft | html %] of [% ISSUE.renewsallowed | html %] renewals remaining)</span>
378                                                     [% ELSIF ( ISSUE.too_soon ) %]
379                                                         No renewal before [% ISSUE.soonestrenewdate | html %]
380                                                         <span class="renewals">([% ISSUE.renewsleft | html %] of [% ISSUE.renewsallowed | html %] renewals remaining)</span>
381                                                     [% ELSIF ( ISSUE.auto_renew || ISSUE.auto_too_soon ) %]
382                                                         Automatic renewal
383                                                         <span class="renewals">([% ISSUE.renewsleft | html %] of [% ISSUE.renewsallowed | html %] renewals remaining)</span>
384                                                     [% ELSIF ( ISSUE.item_denied_renewal ) %]
385                                                         Renewal not allowed
386                                                     [% END %]
387                                                     </td>
388                                                 [% END %]
389                                                 [% IF ( OPACFinesTab ) %]
390                                                     <td class="fines">
391                                                         <span class="tdlabel">Fines:</span>
392                                                         [% IF ( ISSUE.charges ) %]
393                                                             Yes (Item overdue or lost)
394                                                         [% ELSIF ( ISSUE.rentalfines ) %]
395                                                             Yes (Rental fees)
396                                                         [% ELSE %]
397                                                             No
398                                                         [% END %]
399                                                     </td>
400                                                 [% END %]
401                                                 [% IF ( OPACMySummaryHTML ) %]
402                                                     <td class="links">[% ISSUE.MySummaryHTML | $raw %]</td>
403                                                 [% END %]
404                                                 [% IF ( Koha.Preference('AllowCheckoutNotes') ) %]
405                                                     <td class="note">
406                                                         <input type="text" name="note" data-issue_id="[% ISSUE.issue_id | html %]" data-origvalue="[% ISSUE.note | html %]" value="[% ISSUE.note | html %]" readonly>
407                                                         <a class="btn js_submitnote" id="save_[% ISSUE.issue_id | html %]" style="display:none;">Submit note</a>
408                                                         <a class="btn nonjs_submitnote" href="/cgi-bin/koha/opac-issue-note.pl?issue_id=[% ISSUE.issue_id | url %]">Edit / Create note</a>
409                                                     </td>
410                                                 [% END %]
411                                             </tr>
412                                         [% END # /FOREACH ISSUES %]
413                                     </tbody>
414                                 </table>
415                                 [% IF ( canrenew && !userdebarred && OpacRenewalAllowed && !( logged_in_user.is_expired && logged_in_user.category.effective_BlockExpiredPatronOpacActions ) ) %]
416                                     <input type="submit" class="btn btn-primary" value="Renew selected" />
417                                 [% END %]
418                                 </form>
419
420                                 [% IF ( canrenew && !userdebarred && OpacRenewalAllowed && !( logged_in_user.is_expired && logged_in_user.category.effective_BlockExpiredPatronOpacActions ) ) %]
421                                 <form id="renewall" action="/cgi-bin/koha/opac-renew.pl" method="post">
422                                     <input type="hidden" name="from" value="opac_user" />
423                                     <input type="hidden" name="borrowernumber" value="[% borrowernumber | html %]" />
424                                     [% FOREACH ISSUE IN ISSUES %]
425                                         [% IF ISSUE.status %]
426                                             <input type="hidden" name="item" value="[% ISSUE.itemnumber | html %]" />
427                                         [% END %]
428                                     [% END %]
429                                     <input type="submit" class="btn btn-primary" value="Renew all" />
430                                 </form>
431                                 [% END %]
432                                 <p><a href="opac-ics.pl">Download as iCal/.ics file</a></p>
433                             [% ELSE %]
434                                 <table class="table table-bordered table-striped">
435                                     <tr><td>You have nothing checked out</td></tr>
436                                 </table>
437                             [% END # IF issues_count %]
438                         </div> <!-- / .opac-user-checkouts -->
439
440                         [% IF borrower_club_enrollments.count || borrower_enrollable_clubs.count %]
441                             <div id="opac-user-clubs">
442                                 Loading...
443                             </div>
444                         [% END %]
445
446                         [% IF ( OPACFinesTab ) %]
447                             <!-- FINES BOX -->
448                             [% IF ( amountoutstanding > 0 ) %]
449                                 <div id="opac-user-fines"> <h3>Charges</h3>
450                                     <table class="table table-bordered table-striped">
451                                         <thead><tr><th colspan="2">Amount</th></tr></thead>
452                                         <tbody>
453                                             <tr>
454                                                 <td>You currently owe fines and charges amounting to:</td>
455                                                 <td><a href="/cgi-bin/koha/opac-account.pl">[% amountoutstanding | $Price %]</a></td>
456                                             </tr>
457                                         </tbody>
458                                     </table>
459                                 </div>
460                             [% END %]
461
462                             [% IF ( amountoutstanding < 0 ) %]
463                                 <div id="opac-user-fines">  <h3>Credits</h3>
464                                     <table class="table table-bordered table-striped">
465                                         <thead><tr><th colspan="2">Amount</th></tr></thead>
466                                         <tbody>
467                                             <tr>
468                                                 <td>You have a credit of:</td><td><a href="/cgi-bin/koha/opac-account.pl">[% amountoutstanding * -1 | $Price %]</a></td>
469                                             </tr>
470                                         </tbody>
471                                     </table>
472                                 </div>
473                             [% END %]
474
475                             [% IF relatives_with_fines %]
476                                <div id="opac-user-relative-fines"> <h3>Fines and charges</h3>
477                                     <table class="table table-bordered table-striped">
478                                         <thead>
479                                             <tr>
480                                                 <th colspan="2">Amount</th>
481                                             </tr>
482                                         </thead>
483                                         <tbody>
484                                             [% FOREACH r IN relatives_with_fines %]
485                                             <tr>
486                                                 <td>[% r.firstname | html %] [% r.surname | html %] currently owes fines and charges amounting to:</td>
487                                                 <td><a href="/cgi-bin/koha/opac-account.pl#g[% r.id | uri %]">[% r.account.balance | $Price %]</a></td>
488                                             </tr>
489                                             [% END %]
490                                         </tbody>
491                                     </table>
492                                 </div>
493                             [% END %]
494                         [% END # / OPACFinesTab %]
495
496                         [% IF relatives %]
497                             <div id="opac-user-relative-issues">
498                                 <table id="opac-user-relative-issues-table" class="table table-bordered table-striped">
499                                     <thead>
500                                         <tr>
501                                             <th class="anti-the">Title</th>
502                                             <th>Due</th>
503                                             <th>Barcode</th>
504                                             <th>Call no.</th>
505                                             <th class="psort">Relative</th>
506                                         </tr>
507                                     </thead>
508
509                                     <tbody>
510                                         [% FOREACH r IN relatives %]
511                                             [% FOREACH c IN r.checkouts %]
512                                                 <tr>
513                                                     <td>
514                                                         <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% c.item.biblio.biblionumber | uri %]">
515                                                             [% c.item.biblio.title | html %][% IF ( c.item.enumchron ) %] [% c.item.enumchron | html %][% END %]
516                                                         </a>
517                                                     </td>
518
519                                                     <td>
520                                                         [% c.date_due | $KohaDates %]
521                                                     </td>
522
523                                                     <td>
524                                                         [% c.item.barcode | html %]
525                                                     </td>
526
527                                                     <td>
528                                                         [% c.item.itemcallnumber | html %]
529                                                     </td>
530
531                                                     <td>
532                                                         [% r.firstname | html %] [% r.surname | html %]
533                                                     </td>
534                                                 </tr>
535                                             [% END %]
536                                         [% END %]
537                                     </tbody>
538                                 </table>
539                             </div>
540                         [% END %]
541
542                         [% IF ( overdues_count ) %]
543                             <div id="opac-user-overdues">
544                                 <table id="overduest" class="table table-bordered table-striped">
545                                     <caption>Overdues <span class="count">([% overdues_count | html %] total)</span></caption>
546                                     <!-- OVERDUES TABLE ROWS -->
547                                     <thead>
548                                         <tr>
549                                             [% IF ( JacketImages || AdlibrisEnabled ) %]<th class="nosort">&nbsp;</th>[% END %]
550                                             <th class="anti-the">Title</th>
551                                             [% UNLESS ( item_level_itypes ) %]<th>Item type</th> [% END %]
552                                             [% IF ( show_barcode ) %]<th>Barcode</th>[% END %]
553                                             <th>Call no.</th>
554                                             <th class="title-string psort">Due</th>
555                                             [% IF ( OpacRenewalAllowed ) %]
556                                                 <th class="nosort">Renew</th>
557                                             [% END %]
558                                             [% IF ( OPACFinesTab ) %]
559                                                 <th>Fines</th>
560                                             [% END %]
561                                         </tr>
562                                     </thead>
563                                     <tbody>
564                                         [% FOREACH OVERDUE IN OVERDUES %]
565                                             <tr>
566                                                 [% IF ( JacketImages || AdlibrisEnabled ) %]
567                                                     <td class="jacketcell">
568                                                     [% IF ( AdlibrisEnabled && OVERDUE.normalized_isbn ) %]
569                                                         <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% OVERDUE.biblionumber | uri %]"><img src="[% AdlibrisURL | url %]?isbn=[% OVERDUE.normalized_isbn | uri %]" class="adlibris-cover" alt="Adlibris cover image" /></a>
570                                                     [% END %]
571                                                     [% IF ( OPACAmazonCoverImages ) %]
572                                                         [% IF ( OVERDUE.normalized_isbn ) %]
573                                                             <a href="http://www.amazon.com/gp/reader/[% OVERDUE.normalized_isbn | uri %][% AmazonAssocTag | uri %]#reader-link" title="View on Amazon.com"><img src="https://images-na.ssl-images-amazon.com/images/P/[% OVERDUE.normalized_isbn | html %].01.THUMBZZZ.jpg" alt="View on Amazon.com" class="item-thumbnail" /></a>
574                                                         [% ELSE %]
575                                                             <a href="#"><span class="no-image">No cover image available</span></a>
576                                                         [% END %]
577                                                     [% END %]
578
579                                                     [% IF ( GoogleJackets ) %]
580                                                         [% IF ( OVERDUE.normalized_isbn ) %]
581                                                             <div style="display:block;" title="Click to view in Google Books" class="[% OVERDUE.normalized_isbn | html %]" id="gbs-thumbnail[% loop.count | html %]"></div>
582                                                         [% ELSE %]
583                                                             <a href="http://books.google.com/books?q=[% OVERDUE.title |url %]"><span class="no-image">No cover image available</span></a>
584                                                         [% END %]
585                                                     [% END %]
586
587                                                     [% IF ( BakerTaylorEnabled ) %]
588                                                         [% bt_id = ( OVERDUE.normalized_upc || OVERDUE.normalized_isbn ) %]
589                                                         [% IF ( bt_id ) %]
590                                                             <a href="https://[% BakerTaylorBookstoreURL | uri %][% bt_id | uri %]"><img alt="See Baker &amp; Taylor" src="[% BakerTaylorImageURL | html %][% bt_id | html %]" /></a>
591                                                         [% ELSE %]
592                                                             <span class="no-image">No cover image available</span><!-- BakerTaylor needs normalized_upc or normalized_isbn! -->
593                                                         [% END %]
594                                                     [% END %]
595
596                                                     [% IF ( SyndeticsCoverImages ) %]
597                                                         <img src="https://secure.syndetics.com/index.aspx?isbn=[% OVERDUE.normalized_isbn | html %]/SC.GIF&amp;client=[% SyndeticsClientCode | html %]&amp;upc=[% OVERDUE.normalized_upc | html %]&amp;oclc=[% OVERDUE.normalized_oclc | html %]&amp;type=xw10" alt="" class="item-thumbnail" />
598                                                     [% END %]
599                                                     </td>
600                                                 [% END # /IF jacketcell %]
601
602                                                 <td>
603                                                     <a class="title" href="/cgi-bin/koha/opac-detail.pl?bib=[% OVERDUE.biblionumber | html %]">[% INCLUDE 'biblio-title.inc' biblio=OVERDUE %]</a>
604                                                     <span class="item-details">[% OVERDUE.author | html %]</span>
605                                                 </td>
606
607                                                 [% UNLESS ( item_level_itypes ) %]
608                                                     <td>
609                                                         [% IF ( OVERDUE.imageurl  && !Koha.Preference('OpacNoItemTypeImages') ) %]
610                                                             <img src="[% OVERDUE.imageurl | html %]" title="[% OVERDUE.description | html %]" alt="[% OVERDUE.description | html %]" />
611                                                         [% END %] [% OVERDUE.description | html %]
612                                                     </td>
613                                                 [% END %]
614                                                 [% IF ( show_barcode ) %]
615                                                     <td>
616                                                         <span class="tdlabel">Barcode:</span>
617                                                         [% OVERDUE.barcode | html %]
618                                                     </td>
619                                                 [% END %]
620                                                 <td>
621                                                     <span class="tdlabel">Call no.:</span>
622                                                     [% OVERDUE.itemcallnumber | html %]
623                                                 </td>
624                                                 <td>
625                                                     <span title="[% OVERDUE.date_due | html %]">
626                                                         <span class="tdlabel">Date due:</span>
627                                                         [% OVERDUE.date_due | $KohaDates  as_due_date => 1 %]
628                                                     </span>
629                                                 </td>
630                                                 [% IF ( OpacRenewalAllowed ) %]
631                                                     <td>
632                                                         [% IF ( OVERDUE.debarred ) %]
633                                                             Account frozen
634                                                         [% ELSIF ( OVERDUE.status ) %]
635                                                             [% IF ( canrenew ) %]
636                                                                 <a href="/cgi-bin/koha/opac-renew.pl?from=opac_user&amp;item=[% OVERDUE.itemnumber | uri %]&amp;bornum=[% OVERDUE.borrowernumber | uri %]">Renew</a>
637                                                             [% END %]
638                                                                 <span class="renewals">([% OVERDUE.renewsleft | html %] of [% OVERDUE.renewsallowed | html %] renewals remaining)</span>
639                                                         [% ELSIF ( OVERDUE.norenew_overdue ) %]
640                                                             Not allowed<span class="renewals">(overdue)</span>
641                                                         [% ELSIF ( OVERDUE.onreserve ) %]
642                                                             On hold
643                                                         [% ELSE %]
644                                                             No renewals left
645                                                         [% END %]
646                                                     </td>
647                                                 [% END %]
648                                                 [% IF ( OPACFinesTab ) %]
649                                                     <td>
650                                                         <span class="tdlabel">Fines:</span>
651                                                         [% IF ( OVERDUE.charges ) %]
652                                                             Yes
653                                                         [% ELSE %]
654                                                             No
655                                                         [% END %]
656                                                     </td>
657                                                 [% END %]
658                                             </tr>
659                                         [% END %]
660                                     </tbody>
661                                 </table>
662                             </div> <!-- / #opac-user-overdues -->
663                         [% END # /overdues_count %]
664
665                         [% PROCESS 'holds-table.inc' HOLDS = RESERVES, SuspendHoldsOpac = SuspendHoldsOpac, showpriority = showpriority, AutoResumeSuspendedHolds = AutoResumeSuspendedHolds %]
666
667                         [% IF Koha.Preference('ArticleRequests') %]
668                             <div id="opac-user-article-requests">
669                                 [% IF logged_in_user.article_requests_current.count %]
670                                     <table id="article-requests-table" class="table table-bordered table-striped">
671                                         <caption>Article requests <span class="count">([% logged_in_user.article_requests_current.count | html %] total)</span></caption>
672                                         <thead>
673                                             <tr>
674                                                 <th class="anti-the article-request-record-title">Record title</th>
675                                                 <th class="psort article-request-created-on">Placed on</th>
676                                                 <th class="anti-the article-request-title">Title</th>
677                                                 <th class="article-request-author">Author</th>
678                                                 <th class="article-request-volume">Volume</th>
679                                                 <th class="article-request-issue">Issue</th>
680                                                 <th class="article-request-date">Date</th>
681                                                 <th class="article-request-pages">Pages</th>
682                                                 <th class="article-request-chapters">Chapters</th>
683                                                 <th class="article-request-patron-notes">Notes</th>
684                                                 <th class="article-request-status">Status</th>
685                                                 <th class="article-request-branchcode">Pickup library</th>
686                                                 <th class="nosort article-request-cancel">&nbsp;</th>
687                                             </tr>
688                                         </thead>
689
690                                         <tbody>
691                                         [% FOREACH ar IN logged_in_user.article_requests_current %]
692                                                 <td class="article-request-record-title">
693                                                     <a class="article-request-title" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% ar.biblionumber | html %]">
694                                                         [% INCLUDE 'biblio-title.inc' biblio=ar.biblio %]
695                                                         [% ar.item.enumchron | html %]
696                                                     </a>
697                                                     [% ar.biblio.author | html %]
698                                                     [% IF ar.itemnumber %] <em>(only [% ar.item.barcode | html %])</em>[% END %]
699                                                 </td>
700
701                                                 <td class="article-request-created_on">
702                                                     [% ar.created_on | $KohaDates %]
703                                                 </td>
704
705                                                 <td class="article-request-title">
706                                                     [% ar.title | html %]
707                                                 </td>
708
709                                                 <td class="article-request-author">
710                                                     [% ar.author | html %]
711                                                 </td>
712
713                                                 <td class="article-request-volume">
714                                                     [% ar.volume | html %]
715                                                 </td>
716
717                                                 <td class="article-request-issue">
718                                                     [% ar.issue | html %]
719                                                 </td>
720
721                                                 <td class="article-request-date">
722                                                     [% ar.date | html %]
723                                                 </td>
724
725                                                 <td class="article-request-pages">
726                                                     [% ar.pages | html %]
727                                                 </td>
728
729                                                 <td class="article-request-chapters">
730                                                     [% ar.chapters | html %]
731                                                 </td>
732
733                                                 <td class="article-request-patron-notes">
734                                                     [% ar.patron_notes | html %]
735                                                 </td>
736
737                                                 <td class="article-request-status">
738                                                     [% IF ar.status == 'PENDING' %]
739                                                         Pending
740                                                     [% ELSIF ar.status == 'PROCESSING' %]
741                                                         Processing
742                                                     [% ELSIF ar.status == 'COMPLETED' %]
743                                                         Completed
744                                                     [% ELSIF ar.status == 'CANCELED' %]
745                                                         Canceled
746                                                     [% END %]
747                                                 </td>
748
749                                                 <td class="article-request-branchcode">
750                                                     [% ar.branch.branchname | html %]
751                                                 </td>
752
753                                                 <td class="article-request-cancel">
754                                                     <span class="tdlabel">Cancel:</span>
755                                                     <form action="/cgi-bin/koha/opac-article-request-cancel.pl" id="delete_article_request_[% ar.id | html %]">
756                                                         <input type="hidden" name="id" value="[% ar.id | html %]" />
757                                                         <button data-title="[% ar.biblio.title | html %] [% ar.item.enumchron | html %]" data-article-request_id="[% ar.id | html %]" type="submit" class="btn btn-sm btn-danger btn-delete-article-request"><i class="fa fa-remove" aria-hidden="true"></i> Cancel</button>
758                                                     </form>
759                                                 </td>
760                                             </tr>
761                                         [% END %]
762                                     </tbody>
763                                 </table>
764                             [% ELSE %]
765                                 <table class="table table-bordered table-striped">
766                                     <tr><td>You have no article requests currently.</td></tr>
767                                 </table>
768                             [% END # IF article_requests_current.count %]
769                         </div> <!-- / #opac-user-article-requests -->
770                     [% END %]
771
772                     </div> <!-- /#opac-user-views -->
773                 </div> <!-- /#userdetails -->
774             </div> <!-- /.col-10 -->
775         </div> <!-- /.row -->
776     </div> <!-- /.container-fluid -->
777 </div> <!-- /#main -->
778
779 [% IF ( OverDriveCirculation ) %]
780     [% INCLUDE 'overdrive-checkout.inc' %]
781     [% IF ( Koha.Preference('OverDrivePasswordRequired') ) %]
782         [% INCLUDE 'overdrive-login.inc' %]
783     [% END %]
784 [% END %]
785 [% IF ( RecordedBooksCirculation ) %]
786 [% INCLUDE 'recordedbooks-checkout.inc' %]
787 [% END %]
788
789 [% INCLUDE 'opac-bottom.inc' %]
790 [% BLOCK jsinclude %]
791     [% INCLUDE 'calendar.inc' %]
792     [% INCLUDE 'datatables.inc' %]
793     <script>
794
795         $(document).ready(function(){
796             $('#opac-user-views').tabs();
797             $(".modal-nojs").addClass("modal").addClass("hide").removeClass("modal-nojs");
798             $(".suspend-until").prop("readonly",1);
799
800             $(".btn-delete-hold").on("click", function(e){
801                 e.preventDefault();
802                 var hold_title = $(this).data("title");
803                 var reserve_id = $(this).data("reserve_id");
804                 confirmModal( hold_title, _("Are you sure you want to cancel this hold?"), _("Yes, cancel hold"), _("No, do not cancel hold"), function( result ){
805                         if( result ){
806                             $("#delete_hold_" + reserve_id ).submit();
807                         }
808                     }
809                 );
810             });
811
812             $(".btn-delete-article-request").on("click", function(e){
813                 e.preventDefault();
814                 var article_request = $(this).data("title");
815                 var article_request_id = $(this).data("article-request_id");
816                 confirmModal( article_request, _("Are you sure you want to cancel this article request?"), _("Yes, cancel article request"), _("No, do not cancel article request"), function( result ){
817                         if( result ){
818                             $("#delete_article_request_" + article_request_id ).submit();
819                         }
820                     }
821                 );
822             });
823
824             $("#suspend_all_submit").on("click", function(e){
825                 e.preventDefault();
826                 var title = _("Are you sure you want to suspend all holds?");
827                 var body = _("All holds will be suspended.");
828                 confirmModal( body, title, _("Yes, suspend all holds"), "", function( result ){
829                         if( result ){
830                             $("#suspend_all_holds").submit();
831                         }
832                     }
833                 );
834             });
835
836             $("#resume_all_submit").on("click", function(e){
837                 e.preventDefault();
838                 var title = _("Are you sure you want to resume all suspended holds?");
839                 var body = _("All holds will resume.");
840                 confirmModal( body, title, _("Yes, resume all holds"), _("No, do not resume holds"), function( result ){
841                         if( result ){
842                             $("#resume_all_holds").submit();
843                         }
844                     }
845                 );
846             });
847
848             var dTables = $("#checkoutst,#holdst,#overduest,#opac-user-relative-issues-table");
849             dTables.each(function(){
850                 var thIndex = $(this).find("th.psort").index();
851                 $(this).dataTable($.extend(true, {}, dataTablesDefaults, {
852                     "sorting" : [[ thIndex, 'asc' ]],
853                     "columnDefs": [
854                         { "targets": [ "nosort" ],"sortable": false,"searchable": false },
855                         { "type": "anti-the", "targets" : [ "anti-the" ] },
856                         { "type": "title-string", "targets" : [ "title-string" ] }
857                     ]
858                 }));
859             });
860
861             [% IF ( GoogleJackets ) %]KOHA.Google.GetCoverFromIsbn();[% END %]
862             [% IF ( OpacRenewalAllowed && canrenew && !userdebarred ) %]
863                 $("#renewselected").submit(function(){
864                     valid = false;
865                     $("input[type=checkbox]").each(function(){
866                         if($(this).is(':checked')){
867                             valid = true;
868                         }
869                     });
870                     if(!valid){
871                         alert(_("Nothing has been selected. Check the box for each item you want to renew"));
872                     }
873                     return valid;
874                 });
875                 $("body").on("click","#renewselected_link",function(e){
876                     e.preventDefault();
877                     $("#renewselected").submit();
878                 });
879                 $("body").on("click","#renewall_link",function(e){
880                     e.preventDefault();
881                     $("#renewall").submit();
882                 });
883                 [% IF ( canrenew && !userdebarred && OpacRenewalAllowed && !( logged_in_user.is_expired && logged_in_user.category.effective_BlockExpiredPatronOpacActions ) ) %]
884                     $("#checkoutst caption").append("<div id=\"renewcontrols\"><a id=\"renewselected_link\" class=\"btn btn-link\" href=\"#\"><i class=\"fa fa-check\" aria-hidden=\"true\"></i> "+_("Renew selected")+"</a> <a id=\"renewall_link\" class=\"btn btn-link\" href=\"#\"><span class=\"fa-stack\"><i class=\"fa fa-check fa-stack-1x\" aria-hidden=\"true\"></i><i class=\"fa fa-check fa-stack-1x\" aria-hidden=\"true\"></i></span> "+_("Renew all")+"</a></div>");
885                 [% END %]
886             [% END %]
887
888             [% IF ( Koha.Preference('AllowCheckoutNotes') ) %]
889
890                 /* If JS enabled, show button, otherwise show link to redirect to a page where note can be submitted */
891                 $(".nonjs_submitnote").hide();
892
893                 $("input[name='note']").prop('readonly', false);
894                 $("input[name='note']").keypress(function(e){
895                     /* prevent submitting of renewselected form */
896                     if(e.which == 13)
897                         e.preventDefault();
898                 });
899
900                 $("input[name='note']").keyup(function(e){
901                     var $btn_save = $('#save_'+$(this).data('issue_id'));
902                     var origvalue = $(this).data('origvalue');
903                     var value = $(this).val();
904
905                     if(origvalue != value) {
906                         if(origvalue != "")
907                             $btn_save.text(_("Submit changes"));
908                         else
909                             $btn_save.text(_("Submit note"));
910                         $btn_save.show();
911                     } else {
912                         $btn_save.hide();
913                     }
914                 });
915
916                 $(".js_submitnote").click(function(e){
917                     var $self = $(this);
918                     var title = $(this).parent().siblings('.title').html();
919                     var $noteinput = $(this).siblings('input[name="note"]').first();
920
921                     var ajaxData = {
922                         'action': 'issuenote',
923                         'issue_id': $noteinput.data('issue_id'),
924                         'note': $noteinput.val(),
925                     };
926
927                     $.ajax({
928                         url: '/cgi-bin/koha/svc/checkout_notes/',
929                         type: 'POST',
930                         dataType: 'json',
931                         data: ajaxData,
932                     })
933                     .done(function(data) {
934                         var message = "";
935                         if(data.status == 'saved') {
936                             $("#notesaved").removeClass("alert-error");
937                             $("#notesaved").addClass("alert-info");
938                             $noteinput.data('origvalue', data.note);
939                             $noteinput.val(data.note);
940                             message = "<p>" + _("Your note about %s has been saved and sent to the library.").format(title) + "</p>";
941                             message += "<p style=\"font-style:italic;\">" + data.note + "</p>";
942                             $self.hide();
943                         } else if(data.status == 'removed') {
944                             $("#notesaved").removeClass("alert-error");
945                             $("#notesaved").addClass("alert-info");
946                             $noteinput.data('origvalue', "");
947                             $noteinput.val("");
948                             message = "<p>" + _("Your note about %s was removed.").format(title) + "</p>";
949                             $self.hide();
950                         } else {
951                             $("#notesaved").removeClass("alert-info");
952                             $("#notesaved").addClass("alert-error");
953                             message =  "<p>" + _("Your note about %s could not be saved.").format(title) + "</p>";
954                             message += "<p style=\"font-weight:bold;\">" + _("Something went wrong. The note has not been saved") + "</p>";
955                         }
956                         $("#notesaved").html(message);
957                     })
958                     .fail(function(data) {
959                         $("#notesaved").removeClass("alert-info");
960                         $("#notesaved").addClass("alert-error");
961                         var message = "<p style=\"font-weight:bold;\">" + _("Something went wrong. The note has not been saved") + "</p>";
962                         $("#notesaved").html(message);
963                     })
964                     .always(function() {
965                         $("#notesaved").show();
966                     });
967                 });
968             [% END %]
969
970             $(".suspend-until").datepicker({
971                 beforeShow: function(input, inst) {
972                     // https://stackoverflow.com/questions/662220/how-to-change-the-pop-up-position-of-the-jquery-datepicker-control#answer-10598178
973                     var calendar = inst.dpDiv;
974                     setTimeout(function() {
975                         calendar.position({
976                             my: 'left top',
977                             at: 'left bottom',
978                             collision: 'none',
979                             of: input
980                         });
981                     }, 1);
982                 },
983                 minDate: 1
984             });
985
986             if ( $('#opac-user-clubs').length ) {
987                 $('#opac-user-clubs-tab-link').on('click', function() {
988                     $('#opac-user-clubs').text(_("Loading..."));
989                     $('#opac-user-clubs').load('/cgi-bin/koha/clubs/clubs-tab.pl?borrowernumber=[% borrowernumber | html %]');
990                 });
991             }
992         });
993
994         var borrowernumber = "[% borrowernumber | html %]";
995         var MSG_YOUR_RATING = _("Your rating: %s, ");
996         var MSG_AVERAGE_RATING = _("Average rating: %s (%s votes)");
997     </script>
998     [% IF ( Koha.Preference('OpacStarRatings') == 'all' ) %]
999         [% Asset.js("lib/jquery/plugins/jquery.barrating.min.js") | $raw %]
1000         [% Asset.js("js/ratings.js") | $raw %]
1001     [% END %]
1002     [% IF Koha.Preference('OverDriveCirculation') %]
1003     [% Asset.js("js/overdrive.js") | $raw %]
1004     <script>
1005     var OD_password_required = [% IF Koha.Preference('OverDrivePasswordRequired') %]1[% ELSE %]0[% END %];
1006     $(document).ready(function() {
1007         [% IF ( overdrive_error ) %]
1008             KOHA.OverDriveCirculation.display_error("#opac-user-overdrive", "[% overdrive_error.dquote | html %]");
1009         [% END %]
1010
1011         [% IF ( overdrive_tab ) %]
1012             $("#opac-user-views").tabs("select", "#opac-user-overdrive");
1013         [% END %]
1014
1015         $("#opac-user-overdrive").each( function() {
1016             KOHA.OverDriveCirculation.display_account_details(this);
1017         } );
1018     });
1019     </script>
1020     [% END %]
1021     [% IF RecordedBooksCirculation %]
1022         [% Asset.js("js/recordedbooks.js") | $raw %]
1023         <script>
1024             $(document).ready(function() {
1025                 [% IF ( recordedbooks_error ) %]
1026                     KOHA.RecordedBooks.display_error("#opac-user-recordedbooks", "[% recordedbooks_error.dquote | html %]");
1027                 [% END %]
1028                 [% IF ( recordedbooks_tab ) %]
1029                     $("#opac-user-views").tabs("select", "#opac-user-recordedbooks");
1030                 [% END %]
1031                 $("#opac-user-recordedbooks").each( function() {
1032                     KOHA.RecordedBooks.display_account_details(this);
1033                 } );
1034             });
1035         </script>
1036     [% END %]
1037 [% END %]