diff --git a/app/assets/javascripts/admin/templates/users_list.js.handlebars b/app/assets/javascripts/admin/templates/users_list.js.handlebars index 1dced303fff..823df21e0d3 100644 --- a/app/assets/javascripts/admin/templates/users_list.js.handlebars +++ b/app/assets/javascripts/admin/templates/users_list.js.handlebars @@ -57,7 +57,7 @@ {{#each model}} - + {{#if controller.showApproval}} {{#if can_approve}} @@ -67,7 +67,11 @@ {{/if}} {{#link-to 'adminUser' this}}{{avatar this imageSize="small"}}{{/link-to}} {{#link-to 'adminUser' this}}{{unbound username}}{{/link-to}} - {{shorten email}} + {{#if active}} + {{shorten email}} + {{else}} + {{shorten email}} + {{/if}} {{{unbound last_emailed_age}}} {{{unbound last_seen_age}}} {{{unbound topics_entered}}} diff --git a/app/assets/stylesheets/common/admin/admin_base.scss b/app/assets/stylesheets/common/admin/admin_base.scss index 2c8f68b69bb..625c8ca6ce8 100644 --- a/app/assets/stylesheets/common/admin/admin_base.scss +++ b/app/assets/stylesheets/common/admin/admin_base.scss @@ -1300,3 +1300,9 @@ and (max-width : 500px) { } } } + +tr.not-activated { + td, td a, td a:visited { + color: #bbb; + } +} \ No newline at end of file diff --git a/config/locales/client.en.yml b/config/locales/client.en.yml index 68f7f376b93..a44338e9da6 100644 --- a/config/locales/client.en.yml +++ b/config/locales/client.en.yml @@ -1847,6 +1847,7 @@ en: reject_failures: one: "Failed to reject 1 user." other: "Failed to reject %{count} users." + not_verified: "Not verified" user: suspend_failed: "Something went wrong suspending this user {{error}}"