From ea36e2bc7c2f0fd60ae4da7fa9c7a638b7833095 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 28 Apr 2015 11:26:44 +0200 Subject: [PATCH] Bug 11941: Add link to patron lists from the patron home page Content-Type: text/plain; charset=utf-8 The patron lists are only accessible from the tools module, which is not easily accessible when you are in the patron module. Test plan: Go on the patron home page. In the toolbar, you should see a link to the patron lists. NOTE: Tweaked button to a to get the click to work. Signed-off-by: Mark Tompsett Signed-off-by: Liz Rea Signed-off-by: Marcel de Rooy --- koha-tmpl/intranet-tmpl/prog/en/includes/patron-toolbar.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-toolbar.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-toolbar.inc index 8888e45..10c14a8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-toolbar.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-toolbar.inc @@ -6,5 +6,8 @@ [% FOREACH category IN categories %]
  • [% category.description %]
  • [% END %] + [% IF CAN_user_tools_manage_patron_lists %] + Patron lists + [% END %] [% END %] -- 1.7.10.4