- @if($book->restricted || ($page->chapter && $page->chapter->restricted) || $page->restricted)
-
-
- @if($book->restricted)
- @if(userCan('restrictions-manage', $book))
-
Book Permissions Active
- @else
-
Book Permissions Active
- @endif
-
+@section('sidebar')
+ @if($book->restricted || ($page->chapter && $page->chapter->restricted) || $page->restricted)
+
+
{{ trans('entities.permissions') }}
+
+
+
+ @if($book->restricted)
+ @if(userCan('restrictions-manage', $book))
+
{{ trans('entities.books_permissions_active') }}
+ @else
+
{{ trans('entities.books_permissions_active') }}
@endif
+
+ @endif
- @if($page->chapter && $page->chapter->restricted)
- @if(userCan('restrictions-manage', $page->chapter))
-
Chapter Permissions Active
- @else
-
Chapter Permissions Active
- @endif
-
+ @if($page->chapter && $page->chapter->restricted)
+ @if(userCan('restrictions-manage', $page->chapter))
+
{{ trans('entities.chapters_permissions_active') }}
+ @else
+
{{ trans('entities.chapters_permissions_active') }}
@endif
+
+ @endif
- @if($page->restricted)
- @if(userCan('restrictions-manage', $page))
-
Page Permissions Active
- @else
-
Page Permissions Active
- @endif
-
+ @if($page->restricted)
+ @if(userCan('restrictions-manage', $page))
+
{{ trans('entities.pages_permissions_active') }}
+ @else
+
{{ trans('entities.pages_permissions_active') }}
@endif
+
+ @endif
+
+
+
+ @endif
+
+ @if($page->tags->count() > 0)
+
+
{{ trans('entities.page_tags') }}
+
+
+ @endif
+
+ @if ($page->attachments->count() > 0)
+
+
{{ trans('entities.pages_attachments') }}
+
+ @foreach($page->attachments as $attachment)
+
- @endif
- @include('pages/sidebar-tree-list', ['book' => $book, 'sidebarTree' => $sidebarTree])
+ @endforeach
+
+
+ @endif
+
+ @if (isset($pageNav) && count($pageNav))
+
+
{{ trans('entities.pages_navigation') }}
+
+
+
+ @endif
+
+ @include('partials/book-tree', ['book' => $book, 'sidebarTree' => $sidebarTree])
+
+
{{ trans('common.details') }}
+
+ @include('partials.entity-meta', ['entity' => $page])
+@stop
+
+@section('body')
+
+
+
+
+ @include('pages/page-display')
- @include('partials/highlight')
+
+
+ @include('comments/comments', ['pageId' => $page->id])
+
@stop
@section('scripts')