diff options
author | Frédéric Buclin <LpSolit@netscape.net> | 2017-10-16 12:00:18 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@netscape.net> | 2017-10-16 12:00:18 +0200 |
commit | d966c278e6c653a90343c739ac5a48f4127cf7e0 (patch) | |
tree | e8996fd0368b4c649f1f94265ca57d49d8ca80d8 /template/en | |
parent | ade2227bb209e78eb9d7b089471988b3ef80fe3c (diff) | |
download | bugs-d966c278e6c653a90343c739ac5a48f4127cf7e0.tar bugs-d966c278e6c653a90343c739ac5a48f4127cf7e0.tar.gz bugs-d966c278e6c653a90343c739ac5a48f4127cf7e0.tar.bz2 bugs-d966c278e6c653a90343c739ac5a48f4127cf7e0.tar.xz bugs-d966c278e6c653a90343c739ac5a48f4127cf7e0.zip |
Only display the external ID if it is in use
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/admin/users/list.html.tmpl | 32 | ||||
-rw-r--r-- | template/en/default/admin/users/search.html.tmpl | 4 |
2 files changed, 23 insertions, 13 deletions
diff --git a/template/en/default/admin/users/list.html.tmpl b/template/en/default/admin/users/list.html.tmpl index 0b3c46eef..2dbee7451 100644 --- a/template/en/default/admin/users/list.html.tmpl +++ b/template/en/default/admin/users/list.html.tmpl @@ -35,21 +35,29 @@ {name => 'realname' heading => 'Real name' } - {name => 'extern_id' - heading => 'External ID' - } - {name => 'last_seen_date' - heading => 'Last Login' - } - {heading => 'Account History' - content => 'View' - contentlink => 'editusers.cgi?action=activity' _ - '&userid=%%userid%%' _ - listselectionurlparams - } ] %] +[% IF default_authorizer.extern_id_used %] + [% columns.push({name => 'extern_id' + heading => 'External ID' + } + ) + %] +[% END %] + +[% columns.push({name => 'last_seen_date' + heading => 'Last Login' + } + {heading => 'Account History' + content => 'View' + contentlink => 'editusers.cgi?action=activity' _ + '&userid=%%userid%%' _ + listselectionurlparams + } + ) +%] + [% IF Param('allowuserdeletion') && editusers %] [% columns.push({heading => 'Action' content => 'Delete' diff --git a/template/en/default/admin/users/search.html.tmpl b/template/en/default/admin/users/search.html.tmpl index f62148df2..da61a8a01 100644 --- a/template/en/default/admin/users/search.html.tmpl +++ b/template/en/default/admin/users/search.html.tmpl @@ -32,7 +32,9 @@ <option value="login_name">login name</option> <option value="realname">real name</option> <option value="userid">user id</option> - <option value="extern_id">external id</option> + [% IF default_authorizer.extern_id_used %] + <option value="extern_id">external id</option> + [% END %] </select> <label for="matchstr">matching</label> <input size="32" name="matchstr" id="matchstr" autofocus> |