@@ -, +, @@ count - Log in to the staff interface. - On the home page you should see "Suggestions pending approval," followed by the name of your logged-in library and the count of suggestions for your library. - Go to the acquisitions page. - In the "Pending suggestions" section you should see the same information: Your logged-in library name, suggestion count, and the count of suggestions at all libraries. --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tt @@ -57,7 +57,7 @@

Manage suggestions: - [% LoginBranchname | html %]: [% suggestions_count | html %] + [% Branches.GetLoggedInBranchname | html %]: [% suggestions_count | html %] [% IF (all_pendingsuggestions > 0) %] / --- a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt @@ -158,7 +158,7 @@ Suggestions pending approval: - [% LoginBranchname | html %]: [% pendingsuggestions | html %] + [% Branches.GetLoggedInBranchname | html %]: [% pendingsuggestions | html %] [% IF (all_pendingsuggestions > 0) %] / --