soter/soter/static/app/role/list.html

21 lines
555 B
HTML

<h2>Users <a href="/Group" class="btn btn-success pull-right">Add <i class="glyphicon glyphicon-plus"></i></a></h2>
<table class="table table-condensed table-bordered table-striped">
<thead>
<tr>
<th>Name</th>
<th>Groups</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="item in info">
<td><a href="{{item.Url}}">{{item.Name}}</a></td>
<td>
<ul>
<li ng-repeat="permission in item.Permissions">{{permission}}</li>
</ul>
</td>
</tr>
</tbody>
</table>