2017-08-19 18:32:24 +01:00
|
|
|
@extends('sidebar-layout')
|
2015-07-12 21:31:15 +01:00
|
|
|
|
2017-08-19 18:32:24 +01:00
|
|
|
@section('toolbar')
|
|
|
|
<div class="col-sm-8 col-xs-5 faded">
|
|
|
|
@include('pages._breadcrumbs', ['page' => $page])
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-4 col-xs-7 faded">
|
|
|
|
<div class="action-buttons">
|
2017-08-20 13:57:25 +01:00
|
|
|
<span dropdown class="dropdown-container">
|
2018-02-17 19:49:00 +00:00
|
|
|
<div dropdown-toggle class="text-button text-primary">@icon('export'){{ trans('entities.export') }}</div>
|
2017-08-20 13:57:25 +01:00
|
|
|
<ul class="wide">
|
|
|
|
<li><a href="{{ $page->getUrl('/export/html') }}" target="_blank">{{ trans('entities.export_html') }} <span class="text-muted float right">.html</span></a></li>
|
|
|
|
<li><a href="{{ $page->getUrl('/export/pdf') }}" target="_blank">{{ trans('entities.export_pdf') }} <span class="text-muted float right">.pdf</span></a></li>
|
|
|
|
<li><a href="{{ $page->getUrl('/export/plaintext') }}" target="_blank">{{ trans('entities.export_text') }} <span class="text-muted float right">.txt</span></a></li>
|
|
|
|
</ul>
|
|
|
|
</span>
|
2017-08-19 18:32:24 +01:00
|
|
|
@if(userCan('page-update', $page))
|
2018-02-17 13:30:52 +00:00
|
|
|
<a href="{{ $page->getUrl('/edit') }}" class="text-primary text-button" >@icon('edit'){{ trans('common.edit') }}</a>
|
2017-08-19 18:32:24 +01:00
|
|
|
@endif
|
|
|
|
@if(userCan('page-update', $page) || userCan('restrictions-manage', $page) || userCan('page-delete', $page))
|
|
|
|
<div dropdown class="dropdown-container">
|
2018-02-17 19:49:00 +00:00
|
|
|
<a dropdown-toggle class="text-primary text-button">@icon('more') {{ trans('common.more') }}</a>
|
2017-08-19 18:32:24 +01:00
|
|
|
<ul>
|
2016-02-27 19:24:42 +00:00
|
|
|
@if(userCan('page-update', $page))
|
2018-04-14 18:00:16 +01:00
|
|
|
<li><a href="{{ $page->getUrl('/copy') }}" class="text-primary" >@icon('copy'){{ trans('common.copy') }}</a></li>
|
2018-02-17 19:49:00 +00:00
|
|
|
<li><a href="{{ $page->getUrl('/move') }}" class="text-primary" >@icon('folder'){{ trans('common.move') }}</a></li>
|
|
|
|
<li><a href="{{ $page->getUrl('/revisions') }}" class="text-primary">@icon('history'){{ trans('entities.revisions') }}</a></li>
|
2016-02-28 10:49:41 +00:00
|
|
|
@endif
|
2017-08-19 18:32:24 +01:00
|
|
|
@if(userCan('restrictions-manage', $page))
|
2018-02-17 19:49:00 +00:00
|
|
|
<li><a href="{{ $page->getUrl('/permissions') }}" class="text-primary">@icon('lock'){{ trans('entities.permissions') }}</a></li>
|
2015-08-30 17:53:30 +01:00
|
|
|
@endif
|
2017-08-19 18:32:24 +01:00
|
|
|
@if(userCan('page-delete', $page))
|
2018-02-17 13:30:52 +00:00
|
|
|
<li><a href="{{ $page->getUrl('/delete') }}" class="text-neg">@icon('delete'){{ trans('common.delete') }}</a></li>
|
2017-08-19 18:32:24 +01:00
|
|
|
@endif
|
|
|
|
</ul>
|
2015-08-30 17:53:30 +01:00
|
|
|
</div>
|
2017-08-19 18:32:24 +01:00
|
|
|
@endif
|
|
|
|
|
2015-07-23 21:55:46 +01:00
|
|
|
</div>
|
2015-07-12 21:31:15 +01:00
|
|
|
</div>
|
2017-08-19 18:32:24 +01:00
|
|
|
@stop
|
2015-07-15 22:55:49 +01:00
|
|
|
|
2017-08-19 18:32:24 +01:00
|
|
|
@section('sidebar')
|
|
|
|
@if($book->restricted || ($page->chapter && $page->chapter->restricted) || $page->restricted)
|
2017-08-20 13:57:25 +01:00
|
|
|
<div class="card">
|
2018-02-17 19:49:00 +00:00
|
|
|
<h3>@icon('permission') {{ trans('entities.permissions') }}</h3>
|
2017-08-20 13:57:25 +01:00
|
|
|
<div class="body">
|
|
|
|
<div class="text-muted">
|
2015-08-30 17:53:30 +01:00
|
|
|
|
2017-08-20 13:57:25 +01:00
|
|
|
@if($book->restricted)
|
|
|
|
@if(userCan('restrictions-manage', $book))
|
2018-02-17 19:49:00 +00:00
|
|
|
<a href="{{ $book->getUrl('/permissions') }}">@icon('lock'){{ trans('entities.books_permissions_active') }}</a>
|
2017-08-20 13:57:25 +01:00
|
|
|
@else
|
2018-02-17 19:49:00 +00:00
|
|
|
@icon('lock'){{ trans('entities.books_permissions_active') }}
|
2017-08-20 13:57:25 +01:00
|
|
|
@endif
|
|
|
|
<br>
|
|
|
|
@endif
|
2017-08-19 18:32:24 +01:00
|
|
|
|
2017-08-20 13:57:25 +01:00
|
|
|
@if($page->chapter && $page->chapter->restricted)
|
|
|
|
@if(userCan('restrictions-manage', $page->chapter))
|
2018-02-17 19:49:00 +00:00
|
|
|
<a href="{{ $page->chapter->getUrl('/permissions') }}">@icon('lock'){{ trans('entities.chapters_permissions_active') }}</a>
|
2017-08-20 13:57:25 +01:00
|
|
|
@else
|
2018-02-17 19:49:00 +00:00
|
|
|
@icon('lock'){{ trans('entities.chapters_permissions_active') }}
|
2017-08-20 13:57:25 +01:00
|
|
|
@endif
|
|
|
|
<br>
|
|
|
|
@endif
|
2017-08-19 18:32:24 +01:00
|
|
|
|
2017-08-20 13:57:25 +01:00
|
|
|
@if($page->restricted)
|
|
|
|
@if(userCan('restrictions-manage', $page))
|
2018-02-17 19:49:00 +00:00
|
|
|
<a href="{{ $page->getUrl('/permissions') }}">@icon('lock'){{ trans('entities.pages_permissions_active') }}</a>
|
2017-08-20 13:57:25 +01:00
|
|
|
@else
|
2018-02-17 19:49:00 +00:00
|
|
|
@icon('lock'){{ trans('entities.pages_permissions_active') }}
|
2017-08-20 13:57:25 +01:00
|
|
|
@endif
|
|
|
|
<br>
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-08-19 18:32:24 +01:00
|
|
|
</div>
|
|
|
|
@endif
|
2015-10-10 18:57:52 +01:00
|
|
|
|
2017-08-26 15:41:33 +01:00
|
|
|
@if($page->tags->count() > 0)
|
|
|
|
<div class="card tag-display">
|
2018-02-17 19:49:00 +00:00
|
|
|
<h3>@icon('tag') {{ trans('entities.page_tags') }}</h3>
|
2017-08-26 15:41:33 +01:00
|
|
|
<div class="body">
|
2018-03-30 14:09:51 +01:00
|
|
|
@include('components.tag-list', ['entity' => $page])
|
2017-08-26 15:41:33 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if ($page->attachments->count() > 0)
|
|
|
|
<div class="card">
|
2018-02-17 19:49:00 +00:00
|
|
|
<h3>@icon('attach') {{ trans('entities.pages_attachments') }}</h3>
|
2017-08-26 15:41:33 +01:00
|
|
|
<div class="body">
|
|
|
|
@foreach($page->attachments as $attachment)
|
|
|
|
<div class="attachment">
|
2018-02-17 19:49:00 +00:00
|
|
|
<a href="{{ $attachment->getUrl() }}" @if($attachment->external) target="_blank" @endif>@icon($attachment->external ? 'export' : 'file'){{ $attachment->name }}</a>
|
2017-08-26 15:41:33 +01:00
|
|
|
</div>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if (isset($pageNav) && count($pageNav))
|
|
|
|
<div class="card">
|
2018-02-17 19:49:00 +00:00
|
|
|
<h3>@icon('open-book') {{ trans('entities.pages_navigation') }}</h3>
|
2017-08-26 15:41:33 +01:00
|
|
|
<div class="body">
|
|
|
|
<div class="sidebar-page-nav menu">
|
|
|
|
@foreach($pageNav as $navItem)
|
|
|
|
<li class="page-nav-item h{{ $navItem['level'] }}">
|
|
|
|
<a href="{{ $navItem['link'] }}">{{ $navItem['text'] }}</a>
|
|
|
|
</li>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
2017-08-20 13:57:25 +01:00
|
|
|
<div class="card">
|
2018-02-17 19:49:00 +00:00
|
|
|
<h3>@icon('info') {{ trans('common.details') }}</h3>
|
2017-08-20 13:57:25 +01:00
|
|
|
<div class="body">
|
2017-08-26 14:41:46 +01:00
|
|
|
@include('partials.entity-meta', ['entity' => $page])
|
2017-08-20 13:57:25 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-09-20 21:32:19 +01:00
|
|
|
|
|
|
|
@include('partials/book-tree', ['book' => $book, 'sidebarTree' => $sidebarTree])
|
2017-11-16 00:05:24 +05:30
|
|
|
|
2017-08-19 18:32:24 +01:00
|
|
|
@stop
|
2015-10-10 18:57:52 +01:00
|
|
|
|
2017-08-19 18:32:24 +01:00
|
|
|
@section('body')
|
2018-04-01 12:46:27 +01:00
|
|
|
<div class="page-content" page-display="{{ $page->id }}" ng-non-bindable>
|
2015-10-10 18:57:52 +01:00
|
|
|
|
2017-08-19 18:32:24 +01:00
|
|
|
<div class="pointer-container" id="pointer">
|
|
|
|
<div class="pointer anim" >
|
2018-02-17 19:49:00 +00:00
|
|
|
<span class="icon text-primary">@icon('link') @icon('include', ['style' => 'display:none;'])</span>
|
2017-08-19 18:32:24 +01:00
|
|
|
<input readonly="readonly" type="text" id="pointer-url" placeholder="url">
|
2018-02-17 19:49:00 +00:00
|
|
|
<button class="button icon" data-clipboard-target="#pointer-url" type="button" title="{{ trans('entities.pages_copy_link') }}">@icon('copy')</button>
|
2015-08-31 11:43:28 +01:00
|
|
|
</div>
|
2017-08-19 18:32:24 +01:00
|
|
|
</div>
|
2016-08-14 12:29:35 +01:00
|
|
|
|
2017-08-19 18:32:24 +01:00
|
|
|
@include('pages/page-display')
|
2016-09-18 14:49:36 +01:00
|
|
|
|
2017-08-19 18:32:24 +01:00
|
|
|
</div>
|
2017-11-16 00:05:24 +05:30
|
|
|
@if ($commentsEnabled)
|
|
|
|
<div class="container small nopad">
|
|
|
|
@include('comments/comments', ['page' => $page])
|
|
|
|
</div>
|
|
|
|
@endif
|
2015-12-30 20:48:57 +00:00
|
|
|
@stop
|