]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 323524: Make the group name in editgroups.cgi an edit link - Patch by Frédéric...
authorlpsolit%gmail.com <>
Fri, 27 Jan 2006 01:40:31 +0000 (01:40 +0000)
committerlpsolit%gmail.com <>
Fri, 27 Jan 2006 01:40:31 +0000 (01:40 +0000)
template/en/default/admin/groups/list.html.tmpl

index 6dcfcbb4492aed90005db3a4366fddd54b150770..ee1eced11e5075a5f9f304c65aa530305592412d 100644 (file)
 
   [% 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.regexp FILTER html %]&nbsp</td>
+      <td>[% group.regexp FILTER html %]&nbsp;</td>
 
       <td align="center">
         [% IF (group.isactive != 0) && (group.isbuggroup) %]
           X
         [% ELSE %]
-          &nbsp
+          &nbsp;
         [% END %]
       </td>
 
       </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>