1
0
mirror of https://github.com/Foltik/Shimapan synced 2024-09-21 03:09:15 -04:00
shimapan/public/views/panel/users.html

18 lines
549 B
HTML

<div class="inner" ng-controller="UserController" ng-init="getUsers()">
<table class="users">
<tr>
<th>Username</th>
<th>Scope</th>
<th>Upload Count</th>
<th>Upload Size</th>
<th>Date</th>
</tr>
<tr ng-repeat="user in users">
<td>{{user.username}}</td>
<td>{{user.scope}}</td>
<td>{{user.uploadCount}}</td>
<td>{{shorten(user.uploadSize)}}</td>
<td>{{user.date}}</td>
</tr>
</table>
</div>