mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-03-05 03:31:04 +01:00
37 lines
1.7 KiB
HTML
37 lines
1.7 KiB
HTML
<section class="container padding-top-10" ng-controller="ForumsController as vm" ng-init="vm.init();">
|
||
<div class="row margin-top-20">
|
||
<div class="col-md-10 col-md-offset-1">
|
||
<button class="btn btn-success"> {{ 'FORUMS.BTN_ADD_FORUM' | translate }} </button>
|
||
</div>
|
||
|
||
<div class="col-sm-10 col-sm-offset-1">
|
||
<div class="panel panel-default margin-top-30" ng-repeat="cat in vm.formsConfig.category">
|
||
<div class="panel-heading text-center mt-title">
|
||
{{ 'FORUMS.CATEGORY.'+cat.name | translate }}
|
||
</div>
|
||
|
||
<div class="table-responsive" ng-if="vm.used_invitations.length>0">
|
||
<table class="table table-hover table-valign-middle">
|
||
<thead>
|
||
<tr>
|
||
<th></th>
|
||
<th class="text-center">{{'INVITATION.TITLE_TOKEN' | translate}}</th>
|
||
<th class="text-center">{{'INVITATION.TITLE_EMAIL' | translate}}</th>
|
||
<th class="text-center">{{'INVITATION.TITLE_SIGNINAT' | translate}}</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr ng-repeat="r in vm.used_invitations">
|
||
<th scope="row">{{$index+1}}</th>
|
||
<td class="text-center">{{r.token}}</td>
|
||
<td class="text-center">{{r.to_email}}</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|