Lines 94-110
$.tablesorter.addParser({
Link Here
|
94 |
|
94 |
|
95 |
[% IF ( BORROWER_INF.warnexpired ) %] |
95 |
[% IF ( BORROWER_INF.warnexpired ) %] |
96 |
<div class="dialog alert" id="warnexpired"> |
96 |
<div class="dialog alert" id="warnexpired"> |
97 |
<strong>Please note:</strong><span> Your card has expired. Please contact the library for more information.</span> |
97 |
<strong>Please note:</strong><span> Your account has expired. Please contact the library for more information.</span> |
98 |
</div> |
98 |
</div> |
99 |
[% ELSIF ( BORROWER_INF.warnexpired ) %] |
99 |
[% ELSIF ( BORROWER_INF.warnexpired ) %] |
100 |
<div class="dialog alert"> |
100 |
<div class="dialog alert"> |
101 |
<string>Please note:</string><span> You card has expired as of [% BORROWER_INF.warnexpired %]. Please contact the library if you wish to renew your subscription.</span> |
101 |
<strong>Please note:</strong><span> You account has expired as of [% BORROWER_INF.warnexpired %]. Please contact the library if you wish to renew your account.</span> |
102 |
</div> |
102 |
</div> |
103 |
[% END %] |
103 |
[% END %] |
104 |
|
104 |
|
105 |
[% IF ( RENEW_ERROR ) %] |
105 |
[% IF ( RENEW_ERROR ) %] |
106 |
<div class="dialog alert"> |
106 |
<div class="dialog alert"> |
107 |
<string>Please note:</string><span> You're renew failed with the following error: [% RENEW_ERROR %]</span> |
107 |
<string>Please note:</string> |
|
|
108 |
<span> |
109 |
Your account renewal failed because of the following: |
110 |
[% FOREACH error IN RENEW_ERROR.split('|') %] |
111 |
[% IF error == 'card_expired' %] |
112 |
Your account has expired. Please contact the library for more information. |
113 |
[% ELSIF error == 'too_many' %] |
114 |
You have renewed this item the maximum number of times allowed. |
115 |
[% ELSIF error == 'on_reserve' %] |
116 |
This item is on hold for another patron. |
117 |
[% END %] |
118 |
[% END %] |
119 |
</span> |
108 |
</div> |
120 |
</div> |
109 |
[% END %] |
121 |
[% END %] |
110 |
|
122 |
|