community-app/app/views/administration/users.html
Madhukar 234f93c742 Add number format for reports and issue #767
Adding permissions for action buttons
2014-03-11 13:02:12 +05:30

20 lines
900 B
HTML

<h3>{{'label.heading.systemusers' | translate}}</h3>
<div id="systemUsers" data-ng-controller="UserController">
<div class="users-actions">
<div class="action create" has-permission='CREATE_USER' data-ng-click="newUserFormDialog()">{{'label.heading.newuser' | translate}}</div>
</div>
<table id="usersTable" data-ng-show="users.length > 0"
data-mf-data-table="{sScrollY: 280, sPaginationType: 'full_numbers'}"
data-mf-data-table-columns="username,firstname,lastname"
data-mf-data-table-items="users">
<thead>
<tr>
<th>{{'label.heading.username' | translate}}</th>
<th>{{'label.heading.givenname' | translate}}</th>
<th>{{'label.heading.familyname' | translate}}</th>
</tr>
</thead>
</table>
<div data-ng-include="'html/administration/userFormDialog.html'"></div>
</div>