Files
meanTorrent/modules/forums/client/views/admin/configure.client.view.html

37 lines
1.7 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>