mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-04-19 10:09:05 +08:00
9 lines
350 B
PHP
9 lines
350 B
PHP
<div ng-controller="CommentListController as vm" ng-init="pageId = <?= $page->id ?>" class="comments-list" ng-cloak>
|
|
<h3>@{{vm.totalCommentsStr}}</h3>
|
|
<hr>
|
|
<div class="comment-box" ng-repeat="comment in vm.comments track by comment.id">
|
|
@include('comments/list-item')
|
|
</div>
|
|
</div>
|
|
@include('comments/add', ['pageId' => $pageId])
|