summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/groups
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-01-27 02:38:09 +0100
committerlpsolit%gmail.com <>2006-01-27 02:38:09 +0100
commit3bab091dccdb2bdfa10700b64664c6ba77b2ad2f (patch)
tree8c5e9db9ef35d16c5f80c254c145e18c02e5238d /template/en/default/admin/groups
parenta3418510cf741e2801627e7156506fbab72ef946 (diff)
downloadbugzilla-3bab091dccdb2bdfa10700b64664c6ba77b2ad2f.tar.gz
bugzilla-3bab091dccdb2bdfa10700b64664c6ba77b2ad2f.tar.xz
Bug 323524: Make the group name in editgroups.cgi an edit link - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wicked a=justdave
Diffstat (limited to 'template/en/default/admin/groups')
-rw-r--r--template/en/default/admin/groups/list.html.tmpl14
1 files changed, 9 insertions, 5 deletions
diff --git a/template/en/default/admin/groups/list.html.tmpl b/template/en/default/admin/groups/list.html.tmpl
index 5c473216c..b7897c5e7 100644
--- a/template/en/default/admin/groups/list.html.tmpl
+++ b/template/en/default/admin/groups/list.html.tmpl
@@ -50,15 +50,18 @@
[% FOREACH group = groups %]
<tr>
- <td>[% group.name FILTER html %]</td>
+ <td>
+ <a href="editgroups.cgi?action=changeform&amp;group=[% group.id FILTER url_quote %]">
+ [% group.name FILTER html %]</a>
+ </td>
<td>[% group.description FILTER html %]</td>
- <td>[% group.userregexp FILTER html %]&nbsp</td>
+ <td>[% group.userregexp FILTER html %]&nbsp;</td>
<td align="center">
[% IF (group.isactive != 0) && (group.isbuggroup) %]
X
[% ELSE %]
- &nbsp
+ &nbsp;
[% END %]
</td>
@@ -67,9 +70,10 @@
</td>
<td align="center" valign="middle">
- <a href="editgroups.cgi?action=changeform&amp;group=[% group.id FILTER url_quote %]">Edit</a>
[% IF (group.isbuggroup) %]
- | <a href="editgroups.cgi?action=del&amp;group=[% group.id FILTER url_quote %]">Delete</a>
+ <a href="editgroups.cgi?action=del&amp;group=[% group.id FILTER url_quote %]">Delete</a>
+ [% ELSE %]
+ &nbsp;
[% END %]
</td>
</tr>