Lines 1-4
Link Here
|
1 |
[% USE Branches %] |
1 |
[% USE Branches %] |
|
|
2 |
[% USE EncodeUTF8 %] |
2 |
[% USE KohaDates %] |
3 |
[% USE KohaDates %] |
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 %] |
Lines 596-615
No patron matched <span class="ex">[% message %]</span>
Link Here
|
596 |
</ul> |
597 |
</ul> |
597 |
</div> |
598 |
</div> |
598 |
|
599 |
|
599 |
[% IF ( WaitingReserveLoop ) %] |
600 |
[% IF ( WaitingHolds ) %] |
600 |
<div id="holdswaiting" class="circmessage"> |
601 |
<div id="holdswaiting" class="circmessage"> |
601 |
<h4>Holds waiting:</h4> |
602 |
<h4>Holds waiting:</h4> |
602 |
[% FOREACH WaitingReserveLoo IN WaitingReserveLoop %] |
603 |
[% FOREACH w IN WaitingHolds %] |
603 |
<ul> |
604 |
<ul> |
604 |
<li> <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% WaitingReserveLoo.biblionumber %]">[% WaitingReserveLoo.title |html %]</a> ([% WaitingReserveLoo.itemtype %]), [% IF ( WaitingReserveLoo.author ) %]by [% WaitingReserveLoo.author %][% END %] [% IF ( WaitingReserveLoo.itemcallnumber ) %][[% WaitingReserveLoo.itemcallnumber %]] [% END %]Hold placed on [% WaitingReserveLoo.reservedate %]. |
605 |
<li> |
605 |
[% IF ( WaitingReserveLoo.waitingat ) %] |
606 |
<a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% w.biblio.biblionumber %]">[% w.biblio.title | html %]</a> |
606 |
<br />[% IF ( WaitingReserveLoo.waitinghere ) %]<strong class="waitinghere">[% ELSE %]<strong>[% END %]Waiting at [% WaitingReserveLoo.waitingat %]</strong> |
607 |
([% w.item.effective_itemtype %]), |
607 |
[% END %] |
608 |
[% IF ( w.biblio.author ) %] by [% w.biblio.author | html %] [% END %] |
608 |
</li> |
609 |
[% IF ( w.item.itemcallnumber ) %] [[% w.item.itemcallnumber %]] [% END %] |
609 |
</ul> |
610 |
Hold placed on [% w.reservedate | $KohaDates %]. |
610 |
[% END %] |
611 |
|
611 |
</div> |
612 |
<br/> |
612 |
<!-- /If WaitingReserveLoop -->[% END %] |
613 |
[% IF ( w.branch.branchcode == Branches.GetLoggedInBranchcode() ) %]<strong class="waitinghere">[% ELSE %]<strong>[% END %] |
|
|
614 |
Waiting at [% w.branch.branchname | $EncodeUTF8 %] |
615 |
</strong> |
616 |
</li> |
617 |
</ul> |
618 |
[% END %] |
619 |
</div> |
620 |
[% END %] |
621 |
|
613 |
[% IF ( notes ) %] |
622 |
[% IF ( notes ) %] |
614 |
<div id="circnotes" class="circmessage"> |
623 |
<div id="circnotes" class="circmessage"> |
615 |
<h4>Notes:</h4> |
624 |
<h4>Notes:</h4> |
616 |
- |
|
|