2017-04-26 17:05:29 -04:00
|
|
|
<script type="text/ng-template" id="comment-list-item.html">
|
|
|
|
@include('comments/list-item')
|
|
|
|
</script>
|
|
|
|
<script type="text/ng-template" id="comment-reply.html">
|
2017-05-15 15:10:14 -04:00
|
|
|
@include('comments/comment-reply', ['pageId' => $pageId])
|
2017-04-26 17:05:29 -04:00
|
|
|
</script>
|
2017-05-29 23:32:47 -04:00
|
|
|
<div ng-controller="CommentListController as vm" ng-init="pageId = <?= $page->id ?>" class="comments-list" ng-cloak>
|
2017-04-26 17:05:29 -04:00
|
|
|
<h3>@{{vm.totalCommentsStr}}</h3>
|
2017-05-29 23:32:47 -04:00
|
|
|
<hr>
|
|
|
|
<div class="comment-box" ng-repeat="comment in vm.comments track by comment.id">
|
2017-04-26 17:05:29 -04:00
|
|
|
<div ng-include src="'comment-list-item.html'">
|
2017-05-29 23:32:47 -04:00
|
|
|
|
2017-04-26 17:05:29 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-06-04 01:47:14 -04:00
|
|
|
<div ng-if="::vm.canComment()">
|
|
|
|
@include('comments/comment-reply', ['pageId' => $pageId])
|
|
|
|
</div>
|
2017-05-29 23:32:47 -04:00
|
|
|
</div>
|