@@ -, +, @@ the template --- koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc | 10 +++++++++- koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc @@ -24,6 +24,7 @@ [% SET first_priority = 0 %] [% SET last_priority = holds.last.priority %] + [% SET next_available_locations = "" %] [% FOREACH hold IN holds %] [% IF !hold.found && first_priority == 0 %][% first_priority = hold.priority %][% END %] @@ -133,7 +134,14 @@ [% Branches.GetName(hold.branchcode) | html %] [% ELSE %] [% END %] [% END %] --- a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc @@ -1,6 +1,6 @@ [% BLOCK options_for_libraries %] [% FOREACH l IN libraries %] - [% IF l.selected %] + [% IF l.selected || selected == l.branchcode %] [% ELSE %] --