diff options
author | Struan Donald <struan@exo.org.uk> | 2011-08-26 11:30:01 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2011-08-26 11:30:01 +0100 |
commit | c37e66c18891a44d47e6f10431143409f0766481 (patch) | |
tree | 22ef7b200728ba83c3cc41f2aea44d383d051ace | |
parent | 43069a7218e3b092cdcb214a0a6a56d13b38f39a (diff) |
show user flagged status on user search page
-rw-r--r-- | templates/web/default/admin/search_users.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/web/default/admin/search_users.html b/templates/web/default/admin/search_users.html index 43fdebf2b..b4fa2c2da 100644 --- a/templates/web/default/admin/search_users.html +++ b/templates/web/default/admin/search_users.html @@ -12,6 +12,7 @@ <th>[% loc('Name') %]</th> <th>[% loc('Email') %]</th> <th>[% loc('Council') %]</th> + <th>[% loc('Flagged') %]</th> <th>*</th> </tr> [%- FOREACH user IN users %] @@ -19,6 +20,7 @@ <td>[% PROCESS value_or_nbsp value=user.name %]</td> <td>[% PROCESS value_or_nbsp value=user.email %]</td> <td>[% PROCESS value_or_nbsp value=user.from_council %]</td> + <td>[% user.flagged ? loc('Yes') : ' ' %]</td> <td><a href="[% c.uri_for( 'user_edit', user.id ) %]">[% loc('Edit') %]</a></td> </tr> [%- END -%] |