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