Files
redash/client/app/pages/users/list.html
Zsolt Kocsmarszky 635aeb3409 Remove classes
2017-12-27 11:23:46 +01:00

30 lines
891 B
HTML

<settings-screen>
<div class="row">
<div class="col-md-12">
<p ng-if="$ctrl.currentUser.hasPermission('admin')">
<a href="users/new" class="btn btn-default"><i class="fa fa-plus"></i> New User</a>
</p>
<table class="table table-hover table-border">
<thead>
<tr>
<th>Name</th>
<th>Joined</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="row in $ctrl.users.getPageRows()">
<td>
<img ng-src="{{row.profile_image_url}}" height="32px" class="profile__image--settings"/> <a href="users/{{row.id}}">{{row.name}}</a>
</td>
<td>
<span am-time-ago="row.created_at"></span>
</td>
</tr>
</tbody>
</table>
<paginator paginator="$ctrl.users"></paginator>
</div>
</div>
</settings-screen>