mirror of
https://github.com/Foltik/Shimapan
synced 2024-11-10 23:53:31 -05:00
14 lines
402 B
HTML
14 lines
402 B
HTML
<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> |