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-616
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 |
[% IF ( w.branch.branchcode == Branches.GetLoggedInBranchcode() ) %]<strong class="waitinghere">[% ELSE %]<strong>[% END %] |
613 |
[% IF ( w.branch.branchcode == Branches.GetLoggedInBranchcode() ) %]<strong class="waitinghere">[% ELSE %]<strong>[% END %] |
613 |
Waiting at [% w.branch.branchname %] |
614 |
Waiting at [% w.branch.branchname | $EncodeUTF8 | html %] |
614 |
</strong> |
615 |
</strong> |
615 |
</li> |
616 |
</li> |
616 |
</ul> |
617 |
</ul> |
617 |
- |
|
|