Merge pull request #2383 from FinnStutzenstein/Issue2335
Unprivileged users don't see ban icon (fixes #2335)
This commit is contained in:
commit
429fdb31fa
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user