|
Lines 596-604
Link Here
|
| 596 |
if ( status == 'on_hold') { |
596 |
if ( status == 'on_hold') { |
| 597 |
if ( row.first_hold.waiting_date ) { |
597 |
if ( row.first_hold.waiting_date ) { |
| 598 |
if ( row.first_hold.desk ) { |
598 |
if ( row.first_hold.desk ) { |
| 599 |
nodes += '<span class="waitingat">%s</span>'.format(_("Waiting at %s, %s since %s.".format(row.first_hold._strings.pickup_library_id.str, row.first_hold.desk.desk_name, $date(row.first_hold.waiting_date)))); |
599 |
nodes += '<span class="waitingat">%s</span>'.format(_("Waiting at %s, %s since %s.").format(row.first_hold._strings.pickup_library_id.str, row.first_hold.desk.desk_name, $date(row.first_hold.waiting_date))); |
| 600 |
} else { |
600 |
} else { |
| 601 |
nodes += '<span class="waitingat">%s</span>'.format(_("Waiting at %s since %s.".format(row.first_hold._strings.pickup_library_id.str, $date(row.first_hold.waiting_date)))); |
601 |
nodes += '<span class="waitingat">%s</span>'.format(_("Waiting at %s since %s.").format(row.first_hold._strings.pickup_library_id.str, $date(row.first_hold.waiting_date))); |
| 602 |
} |
602 |
} |
| 603 |
[% IF Koha.Preference('canreservefromotherbranches') %] |
603 |
[% IF Koha.Preference('canreservefromotherbranches') %] |
| 604 |
if ( row.first_hold.waiting_date || row.first_hold.priority == 1 ) { |
604 |
if ( row.first_hold.waiting_date || row.first_hold.priority == 1 ) { |
| 605 |
- |
|
|