mirror of
https://github.com/Foltik/Shimapan
synced 2025-01-05 15:58:03 -05:00
Add demo users page
This commit is contained in:
parent
4093d8c6f3
commit
0e18787f62
@ -0,0 +1,18 @@
|
||||
<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>{{user.uploadSize}}</td>
|
||||
<td>{{user.date}}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
Loading…
Reference in New Issue
Block a user