Lines 43-58
Link Here
|
43 |
[% ELSIF pending %] |
43 |
[% ELSIF pending %] |
44 |
<p>Your discharge will be available on this page within a few days.</p> |
44 |
<p>Your discharge will be available on this page within a few days.</p> |
45 |
[% ELSIF failure %] |
45 |
[% ELSIF failure %] |
46 |
<p>You cannot be discharged, you have checked out items. Please return items before asking for a discharge.</p> |
46 |
<p>You cannot be discharged because you have checked out items. Please return your checked out items before asking for a discharge.</p> |
47 |
<ul> |
47 |
<ul> |
48 |
[% IF has_debt %] |
48 |
[% IF has_debt %] |
49 |
<li> You have unpaid fines. Please pay your fines before reapplying.</li> |
49 |
<li>You have unpaid charges. Please pay your charges before reapplying.</li> |
50 |
[% END %] |
50 |
[% END %] |
51 |
[% IF has_issues %] |
51 |
[% IF has_issues %] |
52 |
<li> You have checked out items. Please return them before reapplying.</li> |
52 |
<li>You have checked out items. Please return your checked out items before reapplying.</li> |
53 |
[% END %] |
53 |
[% END %] |
54 |
[% IF !has_issue and !has_debt %] |
54 |
[% IF !has_issue and !has_debt %] |
55 |
<li> Patron cannot be discharged for an unknown reason, please contact a librarian for more information</li> |
55 |
<li>You cannot be discharged for an unknown reason. Please contact library staff for more information.</li> |
56 |
[% END %] |
56 |
[% END %] |
57 |
</ul> |
57 |
</ul> |
58 |
[% ELSIF not messages %] |
58 |
[% ELSIF not messages %] |
Lines 67-77
Link Here
|
67 |
>You cannot be discharged for following reasons: |
67 |
>You cannot be discharged for following reasons: |
68 |
<ul> |
68 |
<ul> |
69 |
[% IF discharge_problems.checkouts %] |
69 |
[% IF discharge_problems.checkouts %] |
70 |
<li> You have [% discharge_problems.checkouts | html %] item(s) checked out. Please return them before reapplying. </li> |
70 |
<li> You have [% discharge_problems.checkouts | html %] item(s) checked out. Please return your checked out items before reapplying. </li> |
71 |
[% END %] |
71 |
[% END %] |
72 |
|
72 |
|
73 |
[% IF discharge_problems.debt %] |
73 |
[% IF discharge_problems.debt %] |
74 |
<li> They have unpaid fines totaling [% discharge_problems.debt | $Price %]. Please pay your fines before reapplying. </li> |
74 |
<li> You have unpaid charges of [% discharge_problems.debt | $Price %]. Please pay your charges before reapplying. </li> |
75 |
[% END %] |
75 |
[% END %] |
76 |
</ul> |
76 |
</ul> |
77 |
</div> |
77 |
</div> |
78 |
- |
|
|