Make Admin group members visible

This commit is contained in:
Johannes Zellner
2016-02-14 13:11:49 +01:00
parent e237b609f5
commit 656c1bfd3a

View File

@@ -249,7 +249,7 @@
<span ng-show="isMe(user)" class="label label-success">This is you!</span>
</td>
<td class="text-right" style="vertical-align: bottom">
<span ng-repeat="groupId in user.groupIds" class="label label-default">{{ groupId }}</span>
<span ng-repeat="groupId in user.groupIds" class="label label-default" ng-class="{ 'label-danger': groupId === 'admin' }">{{ groupId === 'admin' ? 'Admin' : groupId }}</span>
</td>
<td class="text-right" style="vertical-align: bottom">
<button ng-show="!isMe(user)" class="btn btn-xs btn-default" ng-click="sendInvite(user)" title="Send Invite"><i class="fa fa-paper-plane-o"></i></button>