diff options
Diffstat (limited to 'root/admin/group.tt')
-rw-r--r-- | root/admin/group.tt | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/root/admin/group.tt b/root/admin/group.tt index 5ca7fa4..5cf5469 100644 --- a/root/admin/group.tt +++ b/root/admin/group.tt @@ -22,18 +22,14 @@ </table> </form> [% IF entries.size %] -[% heading %] -<table border=0> -<tr> -<th>[% l('Group Name') %]</th> -</tr> +<div align="left"> +<h2>[% heading %]</h2> [% FOREACH entry IN entries %] -<tr align="left"> -<td><a href="[% c.uri_for('/admin/group_modify') %]/[% entry.cn %]">[% entry.cn %]</a></td> -<td>[% entry.description %]</td> -</tr> +<p> +<a href="[% c.uri_for('/admin/group_modify') %]/[% entry.cn %]">[% entry.cn %]</a><br /> + [% entry.description %]</p> [% END %] -</table> +</div> [% END %] |