From cb5b0a57bb80aedba8671f185b3114d28e3e7644 Mon Sep 17 00:00:00 2001 From: Mathieu Saby Date: Sat, 9 Mar 2013 16:15:19 +0100 Subject: [PATCH] [SIGNED-OFF] Bug 8853: Suppress links in basketgroups list Content-Type: text/plain; charset="utf-8" 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 --- .../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.9.5