Lines 81-100
Using this account is not recommended because some parts of Koha will not functi
Link Here
|
81 |
[% IF ( RENEW_ERROR ) %] |
81 |
[% IF ( RENEW_ERROR ) %] |
82 |
<div class="dialog alert"> |
82 |
<div class="dialog alert"> |
83 |
<strong>Please note:</strong> |
83 |
<strong>Please note:</strong> |
84 |
<span> |
|
|
85 |
Your loan renewal failed because of the following reason(s): |
84 |
Your loan renewal failed because of the following reason(s): |
86 |
[% FOREACH error IN RENEW_ERROR.split('\|') %] |
85 |
<ul> |
87 |
[% IF error == 'card_expired' %] |
86 |
[% FOREACH error IN RENEW_ERROR.split('\|') %] |
88 |
Your account has expired. Please contact the library for more information. |
87 |
[% IF error == 'card_expired' %] |
89 |
[% ELSIF error == 'too_many' %] |
88 |
<li>Your account has expired. Please contact the library for more information.</li> |
90 |
You have renewed this item the maximum number of times allowed. |
89 |
[% ELSIF error == 'too_many' %] |
91 |
[% ELSIF error == 'too_soon' %] |
90 |
<li>You have renewed this item the maximum number of times allowed.</li> |
92 |
It is too soon after the checkout date for this item to be renewed. |
91 |
[% ELSIF error == 'too_soon' %] |
93 |
[% ELSIF error == 'on_reserve' %] |
92 |
<li>It is too soon after the checkout date for this item to be renewed.</li> |
94 |
This item is on hold for another borrower. |
93 |
[% ELSIF error == 'on_reserve' %] |
|
|
94 |
<li>This item is on hold for another borrower.</li> |
95 |
[% END %] |
95 |
[% END %] |
96 |
[% END %] |
96 |
[% END %] |
97 |
</ul> |
97 |
</span> |
|
|
98 |
</div> |
98 |
</div> |
99 |
[% END %] |
99 |
[% END %] |
100 |
|
100 |
|
101 |
- |
|
|