diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-05-22 15:35:28 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-05-25 14:53:25 +0200 |
commit | 681ee7b5f288c84150856bcd9a35f0e7ced28b0d (patch) | |
tree | 2a145f62c3c7f76947f4f8364e2a940ecf76f9ce /server/sonar-web/src/main/js/apps/users/templates | |
parent | 850622c8e811b7465946165352a17f95f90897df (diff) | |
download | sonarqube-681ee7b5f288c84150856bcd9a35f0e7ced28b0d.tar.gz sonarqube-681ee7b5f288c84150856bcd9a35f0e7ced28b0d.zip |
SONAR-6579 add support of gravatars
Diffstat (limited to 'server/sonar-web/src/main/js/apps/users/templates')
-rw-r--r-- | server/sonar-web/src/main/js/apps/users/templates/users-list-item.hbs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/apps/users/templates/users-list-item.hbs b/server/sonar-web/src/main/js/apps/users/templates/users-list-item.hbs index 1cd782dd9ed..c3d34d75f53 100644 --- a/server/sonar-web/src/main/js/apps/users/templates/users-list-item.hbs +++ b/server/sonar-web/src/main/js/apps/users/templates/users-list-item.hbs @@ -5,6 +5,12 @@ <a class="js-user-deactivate icon-delete" title="Deactivate" data-toggle="tooltip" href="#"></a> </div> +{{#ifShowAvatars}} + <div class="display-inline-block text-top big-spacer-right"> + {{avatarHelper email 36}} + </div> +{{/ifShowAvatars}} + <div class="display-inline-block text-top width-30"> <div> <strong class="js-user-name">{{name}}</strong> |