mirror of
https://github.com/Foltik/Shimapan
synced 2024-11-11 07:54:55 -05:00
14 lines
402 B
HTML
Executable File
14 lines
402 B
HTML
Executable File
<div class="inner" ng-controller="InviteController" ng-init="getInvites()">
|
|
<table class="invites">
|
|
<tr>
|
|
<th>Code</th>
|
|
<th>Scope</th>
|
|
<th>Expiry</th>
|
|
</tr>
|
|
<tr ng-repeat="invite in invites">
|
|
<td>{{invite.code}}</td>
|
|
<td>{{invite.scope}}</td>
|
|
<td>{{invite.expiry}}</td>
|
|
</tr>
|
|
</table>
|
|
</div> |