mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-08-04 22:51:03 +02:00
feat(forums): moderators/oper/admin can post in readonly form and topic
This commit is contained in:
@@ -51,10 +51,10 @@
|
||||
</div>
|
||||
<div class="box-post-btn">
|
||||
<a class="btn btn-success btn-width-100"
|
||||
ng-if="!vm.topic.readOnly"
|
||||
ng-if="!vm.topic.readOnly || vm.canEdit(vm.topic)"
|
||||
href="#" ng-click="vm.beginPostReply();">{{'FORUMS.BTN_POST_NEW_TOPIC' | translate}}</a>
|
||||
|
||||
<h5 class="text-danger text-uppercase" translate="FORUMS.READ_ONLY_REPLY" ng-if="vm.topic.readOnly"></h5>
|
||||
<h5 class="text-danger text-uppercase" translate="FORUMS.READ_ONLY_REPLY" ng-if="vm.topic.readOnly && !vm.canEdit(vm.topic)"></h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user