Do not show admin group in group listing

This commit is contained in:
Johannes Zellner
2016-02-25 15:54:30 +01:00
parent 625da29fce
commit b5c7f978a2

View File

@@ -285,12 +285,12 @@
</tr>
</thead>
<tbody>
<tr ng-repeat="group in groups">
<tr ng-repeat="group in groups | ignoreAdminGroup">
<td class="text-overflow: ellipsis; white-space: nowrap;">
{{ group.name !== 'admin' ? group.name : 'Admin (manage apps and users on this Cloudron)' }}
{{ group.name }}
</td>
<td class="text-right" style="vertical-align: bottom">
<button class="btn btn-xs btn-danger" ng-hide="group.name === 'admin'" ng-click="groupRemove.show(group)" title="Remove Group"><i class="fa fa-trash-o"></i></button>
<button class="btn btn-xs btn-danger" ng-click="groupRemove.show(group)" title="Remove Group"><i class="fa fa-trash-o"></i></button>
</td>
</tr>
</tbody>