diff options
author | Michael Scherer <misc@mageia.org> | 2011-07-18 10:46:27 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-07-18 10:46:27 +0000 |
commit | 62065bdb7ea52f56c6d3e2caa67e03cf04bf1001 (patch) | |
tree | b9a541bd90f7691d800fc961eccacfc180d19c2f /root | |
parent | c3ac8525105a2d9bbf697eb910e1e9eba67c9610 (diff) | |
download | identity-62065bdb7ea52f56c6d3e2caa67e03cf04bf1001.tar identity-62065bdb7ea52f56c6d3e2caa67e03cf04bf1001.tar.gz identity-62065bdb7ea52f56c6d3e2caa67e03cf04bf1001.tar.bz2 identity-62065bdb7ea52f56c6d3e2caa67e03cf04bf1001.tar.xz identity-62065bdb7ea52f56c6d3e2caa67e03cf04bf1001.zip |
align the list of promoted account to the left, and make the name clickable
Diffstat (limited to 'root')
-rw-r--r-- | root/admin/account_promote.tt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/root/admin/account_promote.tt b/root/admin/account_promote.tt index 467e24c..a956832 100644 --- a/root/admin/account_promote.tt +++ b/root/admin/account_promote.tt @@ -1,10 +1,12 @@ [% IF promoted %] +<div align="left"> [% l("List of users promoted :") %] <ul> [% FOREACH p IN promoted %] - <li>[% p %]</li> + <li><a href="[% c.uri_for('/admin/account_modify') %]/[% p %]">[% p %]</a></li> [% END %] </ul> +</div> [% END %] <form method="post" action=""> <table border=0> |