2019-01-13 10:54:55 -05:00
|
|
|
@extends('tri-layout')
|
2015-07-28 15:57:13 -04:00
|
|
|
|
2019-01-13 10:54:55 -05:00
|
|
|
@section('container-attrs')
|
2020-06-28 16:15:00 -04:00
|
|
|
component="entity-search"
|
|
|
|
option:entity-search:entity-id="{{ $chapter->id }}"
|
|
|
|
option:entity-search:entity-type="chapter"
|
2019-01-13 10:54:55 -05:00
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('body')
|
|
|
|
|
2019-08-25 06:30:26 -04:00
|
|
|
<div class="mb-m print-hidden">
|
2019-02-17 12:52:42 -05:00
|
|
|
@include('partials.breadcrumbs', ['crumbs' => [
|
|
|
|
$chapter->book,
|
|
|
|
$chapter,
|
|
|
|
]])
|
2017-08-20 08:57:25 -04:00
|
|
|
</div>
|
2019-01-13 10:54:55 -05:00
|
|
|
|
2019-08-25 10:44:51 -04:00
|
|
|
<main class="content-wrap card">
|
2020-06-28 16:15:00 -04:00
|
|
|
<h1 class="break-text">{{ $chapter->name }}</h1>
|
|
|
|
<div refs="entity-search@contentView" class="chapter-content">
|
|
|
|
<p class="text-muted break-text">{!! nl2br(e($chapter->description)) !!}</p>
|
2019-01-13 10:54:55 -05:00
|
|
|
@if(count($pages) > 0)
|
2020-06-28 16:15:00 -04:00
|
|
|
<div class="entity-list book-contents">
|
2019-01-13 10:54:55 -05:00
|
|
|
@foreach($pages as $page)
|
|
|
|
@include('pages.list-item', ['page' => $page])
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
@else
|
2020-06-28 16:15:00 -04:00
|
|
|
<div class="mt-xl">
|
2019-04-13 06:24:41 -04:00
|
|
|
<hr>
|
|
|
|
<p class="text-muted italic mb-m mt-xl">{{ trans('entities.chapters_empty') }}</p>
|
|
|
|
|
|
|
|
<div class="icon-list block inline">
|
2019-01-13 10:54:55 -05:00
|
|
|
@if(userCan('page-create', $chapter))
|
2019-04-13 06:24:41 -04:00
|
|
|
<a href="{{ $chapter->getUrl('/create-page') }}" class="icon-list-item text-page">
|
|
|
|
<span class="icon">@icon('page')</span>
|
|
|
|
<span>{{ trans('entities.books_empty_create_page') }}</span>
|
|
|
|
</a>
|
2019-01-13 10:54:55 -05:00
|
|
|
@endif
|
|
|
|
@if(userCan('book-update', $book))
|
2019-04-13 06:24:41 -04:00
|
|
|
<a href="{{ $book->getUrl('/sort') }}" class="icon-list-item text-book">
|
|
|
|
<span class="icon">@icon('book')</span>
|
|
|
|
<span>{{ trans('entities.books_empty_sort_current_book') }}</span>
|
|
|
|
</a>
|
2019-01-13 10:54:55 -05:00
|
|
|
@endif
|
2019-04-13 06:24:41 -04:00
|
|
|
</div>
|
|
|
|
|
2019-01-13 10:54:55 -05:00
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
|
2020-06-28 16:15:00 -04:00
|
|
|
@include('partials.entity-search-results')
|
2019-08-25 10:44:51 -04:00
|
|
|
</main>
|
2019-01-13 10:54:55 -05:00
|
|
|
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('right')
|
|
|
|
|
2019-03-30 11:15:01 -04:00
|
|
|
<div class="mb-xl">
|
|
|
|
<h5>{{ trans('common.details') }}</h5>
|
|
|
|
<div class="blended-links text-small text-muted">
|
|
|
|
@include('partials.entity-meta', ['entity' => $chapter])
|
|
|
|
|
|
|
|
@if($book->restricted)
|
|
|
|
<div class="active-restriction">
|
|
|
|
@if(userCan('restrictions-manage', $book))
|
|
|
|
<a href="{{ $book->getUrl('/permissions') }}">@icon('lock'){{ trans('entities.books_permissions_active') }}</a>
|
|
|
|
@else
|
|
|
|
@icon('lock'){{ trans('entities.books_permissions_active') }}
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if($chapter->restricted)
|
|
|
|
<div class="active-restriction">
|
|
|
|
@if(userCan('restrictions-manage', $chapter))
|
|
|
|
<a href="{{ $chapter->getUrl('/permissions') }}">@icon('lock'){{ trans('entities.chapters_permissions_active') }}</a>
|
|
|
|
@else
|
|
|
|
@icon('lock'){{ trans('entities.chapters_permissions_active') }}
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2019-01-13 10:54:55 -05:00
|
|
|
<div class="actions mb-xl">
|
|
|
|
<h5>{{ trans('common.actions') }}</h5>
|
|
|
|
<div class="icon-list text-primary">
|
|
|
|
|
2017-08-20 08:57:25 -04:00
|
|
|
@if(userCan('page-create', $chapter))
|
2019-01-13 10:54:55 -05:00
|
|
|
<a href="{{ $chapter->getUrl('/create-page') }}" class="icon-list-item">
|
2019-02-16 10:05:18 -05:00
|
|
|
<span>@icon('add')</span>
|
2019-01-13 10:54:55 -05:00
|
|
|
<span>{{ trans('entities.pages_new') }}</span>
|
|
|
|
</a>
|
2017-08-20 08:57:25 -04:00
|
|
|
@endif
|
2019-04-13 07:46:15 -04:00
|
|
|
|
|
|
|
<hr class="primary-background"/>
|
|
|
|
|
2017-08-20 08:57:25 -04:00
|
|
|
@if(userCan('chapter-update', $chapter))
|
2019-01-13 10:54:55 -05:00
|
|
|
<a href="{{ $chapter->getUrl('/edit') }}" class="icon-list-item">
|
2019-02-16 10:05:18 -05:00
|
|
|
<span>@icon('edit')</span>
|
2019-01-13 10:54:55 -05:00
|
|
|
<span>{{ trans('common.edit') }}</span>
|
|
|
|
</a>
|
2017-08-20 08:57:25 -04:00
|
|
|
@endif
|
2019-01-13 10:54:55 -05:00
|
|
|
@if(userCan('chapter-update', $chapter) && userCan('chapter-delete', $chapter))
|
|
|
|
<a href="{{ $chapter->getUrl('/move') }}" class="icon-list-item">
|
2019-02-16 10:05:18 -05:00
|
|
|
<span>@icon('folder')</span>
|
2019-01-13 10:54:55 -05:00
|
|
|
<span>{{ trans('common.move') }}</span>
|
|
|
|
</a>
|
|
|
|
@endif
|
|
|
|
@if(userCan('restrictions-manage', $chapter))
|
|
|
|
<a href="{{ $chapter->getUrl('/permissions') }}" class="icon-list-item">
|
2019-02-16 10:05:18 -05:00
|
|
|
<span>@icon('lock')</span>
|
2019-01-13 10:54:55 -05:00
|
|
|
<span>{{ trans('entities.permissions') }}</span>
|
|
|
|
</a>
|
2017-08-20 08:57:25 -04:00
|
|
|
@endif
|
2019-01-13 10:54:55 -05:00
|
|
|
@if(userCan('chapter-delete', $chapter))
|
|
|
|
<a href="{{ $chapter->getUrl('/delete') }}" class="icon-list-item">
|
2019-02-16 10:05:18 -05:00
|
|
|
<span>@icon('delete')</span>
|
2019-01-13 10:54:55 -05:00
|
|
|
<span>{{ trans('common.delete') }}</span>
|
|
|
|
</a>
|
|
|
|
@endif
|
2019-04-13 07:46:15 -04:00
|
|
|
|
|
|
|
<hr class="primary-background"/>
|
|
|
|
|
2019-08-24 13:26:28 -04:00
|
|
|
@include('partials.entity-export-menu', ['entity' => $chapter])
|
2019-01-13 10:54:55 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-08-20 08:57:25 -04:00
|
|
|
@stop
|
2015-07-28 15:57:13 -04:00
|
|
|
|
2019-01-13 10:54:55 -05:00
|
|
|
@section('left')
|
2018-04-30 09:35:15 -04:00
|
|
|
|
2020-06-28 16:15:00 -04:00
|
|
|
@include('partials.entity-search-form', ['label' => trans('entities.chapters_search_this')])
|
2019-04-13 06:09:17 -04:00
|
|
|
|
2018-04-30 09:35:15 -04:00
|
|
|
@if($chapter->tags->count() > 0)
|
2019-01-13 10:54:55 -05:00
|
|
|
<div class="mb-xl">
|
2018-04-30 09:35:15 -04:00
|
|
|
@include('components.tag-list', ['entity' => $chapter])
|
2019-01-13 10:54:55 -05:00
|
|
|
</div>
|
2018-04-30 09:35:15 -04:00
|
|
|
@endif
|
|
|
|
|
2019-04-07 07:00:09 -04:00
|
|
|
@include('partials.book-tree', ['book' => $book, 'sidebarTree' => $sidebarTree])
|
2017-08-20 08:57:25 -04:00
|
|
|
@stop
|
|
|
|
|
2015-07-28 15:57:13 -04:00
|
|
|
|