https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14250 --- Comment #30 from Baptiste Wojtkowski (bwoj) <baptiste.wojtkowski@biblibre.com> --- (In reply to Katrin Fischer from comment #26)
I think this will always show the note about checkouts:
- [% ELSIF has_issues %] - <p>You cannot be discharged, you have checked out items. Please return items before asking for a discharge.</p> + [% ELSIF failure %] + <p>You cannot be discharged because you have checked out items. Please return your checked out items before asking for a discharge.</p> + <ul> + [% IF has_debt %] + <li>You have unpaid charges. Please pay your charges before reapplying.</li> + [% END %] + [% IF has_issues %] + <li>You have checked out items. Please return your checked out items before reapplying.</li> + [% END %] + [% IF !has_issue and !has_debt %] + <li>You cannot be discharged for an unknown reason. Please contact library staff for more information.</li> + [% END %] + </ul>
I believe we should remove/rephrase the <p> line?
If I understand well, these sentences have been rephrased here (https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=170708&action=diff), right ? -- You are receiving this mail because: You are watching all bug changes.