mirror of
https://github.com/getredash/redash.git
synced 2026-05-09 03:03:08 -04:00
30 lines
891 B
HTML
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>
|