Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
677 B

[% IF renew_results && renew_results.size > 0 %]
<div class="alert">
The fines on the following items were paid off, renewal results are displayed below:
[% FOREACH result IN renew_results %]
[% IF result.success %]
<p>[% INCLUDE 'biblio-title.inc' biblio=result.item.biblio %] ( [% result.item.barcode | html %] ): Renewed - due [% result.info | html %]</p>
[% ELSE %]
<p>[% INCLUDE 'biblio-title.inc' biblio=result.item.biblio %] ( [% result.item.barcode | html %] ): Not renewed - [% INCLUDE 'renew_strings.inc' error=result.info %]</p>
[% END %]
[% END %]
</div>
[% END %]