Show ban icon for inactive users

This commit is contained in:
Girish Ramakrishnan
2019-08-08 08:30:29 -07:00
parent 151d20341e
commit db2d36eaa1

View File

@@ -315,7 +315,8 @@
<tbody>
<tr ng-repeat="user in users" ng-class="{'text-muted': !user.active}">
<td>
<i class="fa fa-briefcase arrow" ng-show="user.admin" uib-tooltip="This user can manage apps, groups and other users"></i>
<i class="fa fa-briefcase arrow" ng-show="user.active && user.admin" uib-tooltip="This user can manage apps, groups and other users"></i>
<i class="fa fa-ban" ng-show="!user.active" uib-tooltip="User is inactive"></i>
</td>
<td class="hand elide-table-cell" ng-click="useredit.show(user)" ng-show="user.username">
{{ user.displayName }} &nbsp; <span class="text-muted">{{ user.username }}</span>