View | Details | Raw Unified | Return to bug 12892
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-5 / +5 lines)
Lines 1-5 Link Here
1
[% USE Branches %]
1
[% USE Branches %]
2
[% USE KohaDates %]
2
[% USE KohaDates %]
3
[% USE EncodeUTF8 %]
3
[% IF ( export_remove_fields OR export_with_csv_profile ) %]
4
[% IF ( export_remove_fields OR export_with_csv_profile ) %]
4
   [% SET exports_enabled = 1 %]
5
   [% SET exports_enabled = 1 %]
5
[% END %]
6
[% END %]
Lines 602-611 No patron matched <span class="ex">[% message %]</span> Link Here
602
                    [% FOREACH w IN WaitingHolds %]
603
                    [% FOREACH w IN WaitingHolds %]
603
                        <ul>
604
                        <ul>
604
                            <li>
605
                            <li>
605
                                <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% w.biblio.biblionumber %]">[% w.biblio.title | html %]</a>
606
                                <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% w.biblio.biblionumber %]">[% w.biblio.title | $EncodeUTF8 | html %]</a>
606
                                ([% w.item.effective_itemtype %]),
607
                                ([% w.item.effective_itemtype | $EncodeUTF8 %]),
607
                                [% IF ( w.biblio.author ) %] by [% w.biblio.author | html %] [% END %]
608
                                [% IF ( w.biblio.author ) %] by [% w.biblio.author | $EncodeUTF8 | html %] [% END %]
608
                                [% IF ( w.item.itemcallnumber ) %] [[% w.item.itemcallnumber %]] [% END %]
609
                                [% IF ( w.item.itemcallnumber ) %] [[% w.item.itemcallnumber | $EncodeUTF8 %]] [% END %]
609
                                Hold placed on [% w.reservedate | $KohaDates %].
610
                                Hold placed on [% w.reservedate | $KohaDates %].
610
611
611
                                <br/>
612
                                <br/>
612
- 

Return to bug 12892