From bf9815302c3961bf774510c0ab33a5402559703f Mon Sep 17 00:00:00 2001 From: Mathieu Saby Date: Sat, 9 Mar 2013 16:15:19 +0100 Subject: [PATCH] Bug 8853: Suppress links in basketgroups list In the table listing all closed basketgroups, clicking the name of a basketgroup reopen it. To edit an open basketgroup or reopen a closed basketgroup, there are specific buttons in "Action" column. So the link around basketgroup name is an UX problem. This patch suppress the link around basketgroup name, in both "closed" and "open" tab. To test : 1. create some closed and open basketgroups 2. check links are not showing anymore Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Jared Camins-Esakov --- .../intranet-tmpl/prog/en/modules/acqui/basketgroup.tt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt index d8be02af31..b0a7a92674 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt @@ -275,11 +275,11 @@ function yuiToolbar() { [% FOREACH basketgroup IN basketgroups %] [% UNLESS ( basketgroup.closed ) %] - [% IF ( basketgroup.name ) %] + [% IF ( basketgroup.name ) %] [% basketgroup.name %] [% ELSE %] Basket group no. [% basketgroup.id %] - [% END %] + [% END %] @@ -306,11 +306,11 @@ function yuiToolbar() { [% IF ( basketgroup.closed ) %] - [% IF ( basketgroup.name ) %] + [% IF ( basketgroup.name ) %] [% basketgroup.name %] [% ELSE %] Basket group no. [% basketgroup.id %] - [% END %] + [% END %]
-- 2.20.1