From 221e432bf202a402e7afc7332e23eb6c30289741 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 --- koha-tmpl/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 d8be02a..b0a7a92 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 %]
-- 1.7.10.4