Lines 2184-2190
Link Here
|
2184 |
embed.push('serialitem.serial'); |
2184 |
embed.push('serialitem.serial'); |
2185 |
[% END %] |
2185 |
[% END %] |
2186 |
[% IF Koha.Preference('UseRecalls') %] |
2186 |
[% IF Koha.Preference('UseRecalls') %] |
2187 |
embed.push('recall', 'recall.patron') |
2187 |
embed.push('recall', 'recall+strings', 'recall.patron') |
2188 |
[% END %] |
2188 |
[% END %] |
2189 |
embed.push('in_bundle', 'bundle_host'); |
2189 |
embed.push('in_bundle', 'bundle_host'); |
2190 |
[% IF Koha.Preference('UseCourseReserves') %] |
2190 |
[% IF Koha.Preference('UseCourseReserves') %] |
Lines 2441-2447
Link Here
|
2441 |
[% IF Koha.Preference('UseRecalls') %] |
2441 |
[% IF Koha.Preference('UseRecalls') %] |
2442 |
if ( row.recall ) { |
2442 |
if ( row.recall ) { |
2443 |
if ( row.recall.waiting_date ) { |
2443 |
if ( row.recall.waiting_date ) { |
2444 |
nodes += '<span>%s</span>'.format(_("Waiting at %s since %s").format(escape_str(row.recall.pickup_library_id), $date(row.recall.waiting_date))); # FIXME Display library names instead of codes |
2444 |
nodes += '<span>%s</span>'.format(_("Waiting at %s since %s").format(escape_str(row.recall.pickup_library_id.str), $date(row.recall.waiting_date))); |
2445 |
} else { |
2445 |
} else { |
2446 |
let patron_to_html = $patron_to_html(row.recall.patron); |
2446 |
let patron_to_html = $patron_to_html(row.recall.patron); |
2447 |
nodes += '<span>%s</span>'.format(_("recalled by %s on %s").format(patron_to_html, $date(row.recall.created_date))) |
2447 |
nodes += '<span>%s</span>'.format(_("recalled by %s on %s").format(patron_to_html, $date(row.recall.created_date))) |
2448 |
- |
|
|