Commit 3bab091d authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 323524: Make the group name in editgroups.cgi an edit link - Patch by…

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
parent a3418510
......@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment