Merge pull request #2383 from FinnStutzenstein/Issue2335

Unprivileged users don't see ban icon (fixes #2335)
This commit is contained in:
Norman Jäckel 2016-09-17 10:57:05 +02:00 committed by GitHub
commit 429fdb31fa

View File

@ -187,7 +187,7 @@
<!-- user data colums --> <!-- user data colums -->
<td ng-mouseover="user.hover=true" ng-mouseleave="user.hover=false"> <td ng-mouseover="user.hover=true" ng-mouseleave="user.hover=false">
<strong> <strong>
<i ng-show="!user.is_active" class="fa fa-ban" <i ng-show="user.is_active === false" class="fa fa-ban"
title="{{ 'Is inactive' | translate }}"></i> title="{{ 'Is inactive' | translate }}"></i>
<i ng-show="user.is_committee" class="fa fa-users" <i ng-show="user.is_committee" class="fa fa-users"
title="{{ 'Is a committee' | translate }}"></i> title="{{ 'Is a committee' | translate }}"></i>