unserver-unify
Version:
46 lines • 1.7 kB
HTML
<div ng-controller="BbsTopicsCtrl as ctrl">
<div class="col-md-12" ng-if="bbsStatus | isEmpty">
<div translate="" class="no_record">
No Record
</div>
</div>
<div ng-repeat="subStatus in bbsStatus">
<div class="col-xs-12 no-padding">
<div class="headline margin-bottom-15">
<h3>{{subStatus.key}}</h3>
</div>
</div>
<!-- Dynamic forum -->
<div class="clearfix"></div>
<div ng-repeat="item in subStatus.bbss" class="tag-box">
<div class="row">
<div class="col-xs-6">
<div ui-sref="index.bbs.tab({subkey:item.key})" class="service-block {{item.color}} forum_box box-shadow shadow-effect-1 service-or">
<div class="service-bg"></div>
<i class="icon-custom icon-color-light rounded-x fa fa-comments"></i>
<h2 class="heading-md" style="min-height:50px;">
<span><a ui-sref="index.bbs.tab({subkey:item.key})">{{item.key}}</a></span>
</h2>
<p class="panel-title" style="font-size:x-small;">
<table style="width:100%">
<tr>
<td with="50%" style="text-align:left;">
<font color="white">
{{'Topics' | translate}}: {{item.status.topics}}
</font>
</td>
<td with="50%">
<font color="white">
{{'Replies'|translate}}: {{item.status.replys}}
</font>
</td>
</tr>
</table>
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Dynamic forum end -->
</div>