diff options
author | tuscanhobbit <tuscanhobbit@users.noreply.github.com> | 2013-11-24 23:06:03 +0100 |
---|---|---|
committer | tuscanhobbit <tuscanhobbit@users.noreply.github.com> | 2013-11-24 23:06:03 +0100 |
commit | 421cacfc8d968f981e6c3420017910c3a8d047ab (patch) | |
tree | dc6eee718bd9ae5164f02c9d1310fd6a73cd22f3 /view/tpl/admin_users.tpl | |
parent | d126c2bcaae4c25eda03b99b4422398ad781c582 (diff) | |
download | volse-hubzilla-421cacfc8d968f981e6c3420017910c3a8d047ab.tar.gz volse-hubzilla-421cacfc8d968f981e6c3420017910c3a8d047ab.tar.bz2 volse-hubzilla-421cacfc8d968f981e6c3420017910c3a8d047ab.zip |
admin user table now shows the channel list, minor changes to summary
Diffstat (limited to 'view/tpl/admin_users.tpl')
-rwxr-xr-x | view/tpl/admin_users.tpl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/view/tpl/admin_users.tpl b/view/tpl/admin_users.tpl index 609289013..3549dc5c2 100755 --- a/view/tpl/admin_users.tpl +++ b/view/tpl/admin_users.tpl @@ -63,11 +63,13 @@ <tbody> {{foreach $users as $u}} <tr> + <td class='account_id'>{{$u.account_id}}</td> <td class='email'>{{if $u.blocked}} <i>{{$u.account_email}}</i> {{else}} <strong>{{$u.account_email}}</strong> {{/if}}</td> + <td class='channels'>{{$u.channels}}</td> <td class='register_date'>{{$u.account_created}}</td> <td class='login_date'>{{$u.account_lastlog}}</td> <td class='account_expires'>{{$u.account_expires}}</td> |