|
Lines 246-256
Link Here
|
| 246 |
<ul> |
246 |
<ul> |
| 247 |
[% FOREACH w IN WaitingHolds %] |
247 |
[% FOREACH w IN WaitingHolds %] |
| 248 |
[% IF ( w.branch.branchcode == logged_in_branchcode ) %] |
248 |
[% IF ( w.branch.branchcode == logged_in_branchcode ) %] |
| 249 |
<li> |
249 |
<li class="waiting-hold-here"> |
| 250 |
<a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% w.biblio.biblionumber | uri %]">[% w.biblio.title | html %]</a> |
250 |
<a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% w.biblio.biblionumber | uri %]">[% w.biblio.title | html %]</a> |
| 251 |
([% ItemTypes.GetDescription( w.item.effective_itemtype ) | html %]), [% IF ( w.biblio.author ) %]by [% w.biblio.author | html %][% END %] |
251 |
([% ItemTypes.GetDescription( w.item.effective_itemtype ) | html %]), [% IF ( w.biblio.author ) %]by [% w.biblio.author | html %][% END %] |
| 252 |
[% IF ( w.item.itemcallnumber ) %][[% w.item.itemcallnumber | html %]][% END %] |
252 |
[% IF ( w.item.itemcallnumber ) %][[% w.item.itemcallnumber | html %]][% END %] |
| 253 |
([% w.item.barcode %]) |
253 |
<span class="barcode">([% w.item.barcode %])</span> |
| 254 |
<span class="holddate">Hold placed on [% w.reservedate | $KohaDates %].</span> |
254 |
<span class="holddate">Hold placed on [% w.reservedate | $KohaDates %].</span> |
| 255 |
<br /> |
255 |
<br /> |
| 256 |
<strong class="waitinghere"> [% SET expires_on = w.expirationdate %] Waiting here [% IF expires_on %]until [% expires_on | $KohaDates %][% END %]. </strong> |
256 |
<strong class="waitinghere"> [% SET expires_on = w.expirationdate %] Waiting here [% IF expires_on %]until [% expires_on | $KohaDates %][% END %]. </strong> |
|
Lines 266-276
Link Here
|
| 266 |
<ul> |
266 |
<ul> |
| 267 |
[% FOREACH w IN WaitingHolds %] |
267 |
[% FOREACH w IN WaitingHolds %] |
| 268 |
[% IF ( w.branch.branchcode != logged_in_branchcode ) %] |
268 |
[% IF ( w.branch.branchcode != logged_in_branchcode ) %] |
| 269 |
<li> |
269 |
<li class="waiting-hold-elsewhere"> |
| 270 |
<a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% w.biblio.biblionumber | uri %]">[% w.biblio.title | html %]</a> |
270 |
<a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% w.biblio.biblionumber | uri %]">[% w.biblio.title | html %]</a> |
| 271 |
([% ItemTypes.GetDescription( w.item.effective_itemtype ) | html %]), [% IF ( w.biblio.author ) %]by [% w.biblio.author | html %][% END %] |
271 |
([% ItemTypes.GetDescription( w.item.effective_itemtype ) | html %]), [% IF ( w.biblio.author ) %]by [% w.biblio.author | html %][% END %] |
| 272 |
[% IF ( w.item.itemcallnumber ) %][[% w.item.itemcallnumber | html %]][% END %] |
272 |
[% IF ( w.item.itemcallnumber ) %][[% w.item.itemcallnumber | html %]][% END %] |
| 273 |
([% w.item.barcode %]) |
273 |
<span class="barcode">([% w.item.barcode %])</span> |
| 274 |
<span>Hold placed on [% w.reservedate | $KohaDates %].</span> |
274 |
<span>Hold placed on [% w.reservedate | $KohaDates %].</span> |
| 275 |
<br /> |
275 |
<br /> |
| 276 |
<strong> [% SET expires_on = w.expirationdate %] Waiting at [% w.branch.branchname | html %] [% IF expires_on %]until [% expires_on | $KohaDates %][% END %] </strong> |
276 |
<strong> [% SET expires_on = w.expirationdate %] Waiting at [% w.branch.branchname | html %] [% IF expires_on %]until [% expires_on | $KohaDates %][% END %] </strong> |
| 277 |
- |
|
|