diff options
author | Michael Scherer <misc@mageia.org> | 2011-07-21 10:45:29 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-07-21 10:45:29 +0000 |
commit | 8990b94be73e8ef225742f9676cc2ec9574e771f (patch) | |
tree | 8686bb1f013882276b508e355e7b1af7932cb8b8 | |
parent | dbd5c45f77e0715fb032a98183e60d06580f895c (diff) | |
download | identity-8990b94be73e8ef225742f9676cc2ec9574e771f.tar identity-8990b94be73e8ef225742f9676cc2ec9574e771f.tar.gz identity-8990b94be73e8ef225742f9676cc2ec9574e771f.tar.bz2 identity-8990b94be73e8ef225742f9676cc2ec9574e771f.tar.xz identity-8990b94be73e8ef225742f9676cc2ec9574e771f.zip |
redo the list of group that are managed, to be more seamless
-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 %] |