@@ -, +, @@ authorized values --- .../prog/en/modules/admin/authorised_values.tt | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt @@ -215,7 +215,7 @@ Description Description (OPAC) Icon - Branches limitations + Library limitations Actions @@ -229,13 +229,17 @@ [% IF loo.branches.size > 0 %] [% branches_str = "" %] [% FOREACH branch IN loo.branches %] - [% branches_str = branches_str _ " " _ branch.branchname _ "(" _ branch.branchcode _ ")" %] + [%- IF loop.first -%] + [% branches_str = branch.branchname _ " (" _ branch.branchcode _ ")" %] + [% ELSE %] + [% branches_str = branches_str _ "\n" _ branch.branchname _ " (" _ branch.branchcode _ ")" %] + [% END %] [% END %] - + [% IF loo.branches.size > 1 %] - [% loo.branches.size | html %] branches limitations + [% loo.branches.size | html %] library limitations [% ELSE %] - [% loo.branches.size | html %] branch limitation + [% loo.branches.size | html %] library limitation [% END %] [% ELSE %] No limitation @@ -320,6 +324,7 @@ $('#searchfield').change(function() { $('#category').submit(); }); + $(".library_limitation").tooltip(); }); [% END %] --