Lines 25-31
Link Here
|
25 |
<div class="main"> |
25 |
<div class="main"> |
26 |
<ul class="breadcrumb"> |
26 |
<ul class="breadcrumb"> |
27 |
<li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">›</span></li> |
27 |
<li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">›</span></li> |
28 |
<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">›</span></li> |
28 |
<li><a href="/cgi-bin/koha/opac-user.pl">[% INCLUDE 'patron-title.inc' patron = logged_in_user %]</a> <span class="divider">›</span></li> |
29 |
<li><a href="#">Your summary</a></li> |
29 |
<li><a href="#">Your summary</a></li> |
30 |
</ul> |
30 |
</ul> |
31 |
|
31 |
|
Lines 41-50
Link Here
|
41 |
|
41 |
|
42 |
[% INCLUDE 'opac-note.inc' %] |
42 |
[% INCLUDE 'opac-note.inc' %] |
43 |
|
43 |
|
44 |
<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>Hello, [% INCLUDE 'patron-title.inc' patron = logged_in_user %] |
45 |
</h2> |
45 |
</h2> |
46 |
|
46 |
|
47 |
<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 |
<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> |
48 |
|
48 |
|
49 |
[% 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 |
[% 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 %] |
50 |
|
50 |
|
Lines 55-70
Link Here
|
55 |
</div> |
55 |
</div> |
56 |
[% END %] |
56 |
[% END %] |
57 |
|
57 |
|
58 |
[% IF ( BORROWER_INFO.warndeparture ) %] |
58 |
[% IF ( borrower.warndeparture ) %] |
59 |
<div class="alert" id="warndeparture"> |
59 |
<div class="alert" id="warndeparture"> |
60 |
<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 |
<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> |
61 |
[% 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 |
[% IF ( borrower.returnbeforeexpiry ) %]<span id="warndeparture_returnbeforeexpiry"> Also note that you must return all checked out items before your card expires.</span>[% END %] |
62 |
</div> |
62 |
</div> |
63 |
[% END %] |
63 |
[% END %] |
64 |
|
64 |
|
65 |
[% IF ( BORROWER_INFO.warnexpired ) %] |
65 |
[% IF ( borrower.warnexpired ) %] |
66 |
<div class="alert" id="warnexpired"> |
66 |
<div class="alert" id="warnexpired"> |
67 |
<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 |
<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> |
68 |
</div> |
68 |
</div> |
69 |
[% END %] |
69 |
[% END %] |
70 |
|
70 |
|
Lines 98-130
Link Here
|
98 |
</li> |
98 |
</li> |
99 |
[% ELSE %] |
99 |
[% ELSE %] |
100 |
<li id="userdebarred"><strong>Please note:</strong> Your account has been frozen. |
100 |
<li id="userdebarred"><strong>Please note:</strong> Your account has been frozen. |
101 |
[% IF ( BORROWER_INFO.debarredcomment ) %] |
101 |
[% IF ( borrower.debarredcomment ) %] |
102 |
Comment: |
102 |
Comment: |
103 |
<span id="userdebarred_comment"> |
103 |
<span id="userdebarred_comment"> |
104 |
<strong> |
104 |
<strong> |
105 |
[% IF BORROWER_INFO.debarredcomment.search('OVERDUES_PROCESS') %] |
105 |
[% IF borrower.debarredcomment.search('OVERDUES_PROCESS') %] |
106 |
Restriction added by overdues process [% BORROWER_INFO.debarredcomment.remove('OVERDUES_PROCESS ') | html_line_break %] |
106 |
Restriction added by overdues process [% borrower.debarredcomment.remove('OVERDUES_PROCESS ') | html_line_break %] |
107 |
[% ELSE %] |
107 |
[% ELSE %] |
108 |
[% BORROWER_INFO.debarredcomment | html_line_break %] |
108 |
[% borrower.debarredcomment | html_line_break %] |
109 |
[% END %] |
109 |
[% END %] |
110 |
</strong> |
110 |
</strong> |
111 |
</span> |
111 |
</span> |
112 |
[% END %] |
112 |
[% END %] |
113 |
[% IF ( BORROWER_INFO.userdebarreddate && debarred_date != '9999-12-31' ) %] |
113 |
[% IF ( borrower.userdebarreddate && debarred_date != '9999-12-31' ) %] |
114 |
End date: |
114 |
End date: |
115 |
<span id="userdebarred_date">[% BORROWER_INFO.userdebarreddate | $KohaDates %]</span> |
115 |
<span id="userdebarred_date">[% borrower.userdebarreddate | $KohaDates %]</span> |
116 |
[% END %] |
116 |
[% END %] |
117 |
|
117 |
|
118 |
<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> |
118 |
<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> |
119 |
[% END %] |
119 |
[% END %] |
120 |
[% END %] |
120 |
[% END %] |
121 |
[% IF ( BORROWER_INFO.gonenoaddress ) %] |
121 |
[% IF ( borrower.gonenoaddress ) %] |
122 |
<li id="gonenoaddress"><strong>Please note:</strong> According to our records, we don't have up-to-date contact information. Please contact the library. |
122 |
<li id="gonenoaddress"><strong>Please note:</strong> According to our records, we don't have up-to-date contact information. Please contact the library. |
123 |
<a href="/cgi-bin/koha/opac-memberentry.pl">[% IF ( Koha.Preference('OPACPatronDetails') ) %]Update your contact information[% ELSE %]Go to your contact information[% END %]</a> |
123 |
<a href="/cgi-bin/koha/opac-memberentry.pl">[% IF ( Koha.Preference('OPACPatronDetails') ) %]Update your contact information[% ELSE %]Go to your contact information[% END %]</a> |
124 |
[% IF ( Koha.Preference('OPACPatronDetails') ) %]<em>(Please note: there may be a delay in restoring your account if you submit online.)</em>[% END %] |
124 |
[% IF ( Koha.Preference('OPACPatronDetails') ) %]<em>(Please note: there may be a delay in restoring your account if you submit online.)</em>[% END %] |
125 |
</li> |
125 |
</li> |
126 |
[% END %] |
126 |
[% END %] |
127 |
[% IF ( BORROWER_INFO.lost ) %] |
127 |
[% IF ( borrower.lost ) %] |
128 |
<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> |
128 |
<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> |
129 |
[% END %] |
129 |
[% END %] |
130 |
[% IF ( renewal_blocked_fines.defined ) && ( OpacRenewalAllowed ) %] |
130 |
[% IF ( renewal_blocked_fines.defined ) && ( OpacRenewalAllowed ) %] |
Lines 145-153
Link Here
|
145 |
[% IF relatives %]<li><a href="#opac-user-relative-issues">Relatives' checkouts</a></li>[% END %] |
145 |
[% IF relatives %]<li><a href="#opac-user-relative-issues">Relatives' checkouts</a></li>[% END %] |
146 |
[% IF ( overdues_count ) %]<li><a href="#opac-user-overdues">Overdue ([% overdues_count %])</a></li>[% END %] |
146 |
[% IF ( overdues_count ) %]<li><a href="#opac-user-overdues">Overdue ([% overdues_count %])</a></li>[% END %] |
147 |
[% IF ( OPACFinesTab ) %] |
147 |
[% IF ( OPACFinesTab ) %] |
148 |
[% IF ( BORROWER_INFO.amountoverfive ) %]<li><a href="#opac-user-fines">Fines ([% amountoutstanding | $Price %])</a></li>[% END %] |
148 |
[% IF ( borrower.amountoverfive ) %]<li><a href="#opac-user-fines">Fines ([% amountoutstanding | $Price %])</a></li>[% END %] |
149 |
[% IF ( BORROWER_INFO.amountoverzero ) %]<li><a href="#opac-user-fines">Fines ([% amountoutstanding | $Price %])</a></li>[% END %] |
149 |
[% IF ( borrower.amountoverzero ) %]<li><a href="#opac-user-fines">Fines ([% amountoutstanding | $Price %])</a></li>[% END %] |
150 |
[% IF ( BORROWER_INFO.amountlessthanzero ) %]<li><a href="#opac-user-fines">Credits ([% amountoutstanding | $Price %])</a></li>[% END %] |
150 |
[% IF ( borrower.amountlessthanzero ) %]<li><a href="#opac-user-fines">Credits ([% amountoutstanding | $Price %])</a></li>[% END %] |
151 |
[% END %] |
151 |
[% END %] |
152 |
|
152 |
|
153 |
[% IF borrower_club_enrollments.count || borrower_enrollable_clubs.count %] |
153 |
[% IF borrower_club_enrollments.count || borrower_enrollable_clubs.count %] |
Lines 371-377
Link Here
|
371 |
|
371 |
|
372 |
[% IF ( OPACFinesTab ) %] |
372 |
[% IF ( OPACFinesTab ) %] |
373 |
<!-- FINES BOX --> |
373 |
<!-- FINES BOX --> |
374 |
[% IF BORROWER_INFO.amountoverfive %] |
374 |
[% IF borrower.amountoverfive %] |
375 |
<div id="opac-user-fines"> <h3>Fines and charges</h3> |
375 |
<div id="opac-user-fines"> <h3>Fines and charges</h3> |
376 |
<table class="table table-bordered table-striped"> |
376 |
<table class="table table-bordered table-striped"> |
377 |
<thead><tr><th colspan="2">Amount</th></tr></thead> |
377 |
<thead><tr><th colspan="2">Amount</th></tr></thead> |
Lines 385-391
Link Here
|
385 |
</div> |
385 |
</div> |
386 |
[% END %] |
386 |
[% END %] |
387 |
|
387 |
|
388 |
[% IF BORROWER_INFO.amountoverzero %] |
388 |
[% IF borrower.amountoverzero %] |
389 |
<div id="opac-user-fines"> <h3>Fines and charges</h3> |
389 |
<div id="opac-user-fines"> <h3>Fines and charges</h3> |
390 |
<table class="table table-bordered table-striped"> |
390 |
<table class="table table-bordered table-striped"> |
391 |
<thead><tr><th colspan="2">Amount</th></tr></thead> |
391 |
<thead><tr><th colspan="2">Amount</th></tr></thead> |
Lines 399-405
Link Here
|
399 |
</div> |
399 |
</div> |
400 |
[% END %] |
400 |
[% END %] |
401 |
|
401 |
|
402 |
[% IF BORROWER_INFO.amountlessthanzero %] |
402 |
[% IF borrower.amountlessthanzero %] |
403 |
<div id="opac-user-fines"> <h3>Credits</h3> |
403 |
<div id="opac-user-fines"> <h3>Credits</h3> |
404 |
<table class="table table-bordered table-striped"> |
404 |
<table class="table table-bordered table-striped"> |
405 |
<thead><tr><th colspan="2">Amount</th></tr></thead> |
405 |
<thead><tr><th colspan="2">Amount</th></tr></thead> |