BookStack/resources/views/books/show.blade.php

93 lines
4.8 KiB
PHP
Raw Normal View History

2015-07-12 19:01:42 +00:00
@extends('base')
@section('content')
<div class="faded-small toolbar" ng-non-bindable>
2015-08-30 16:53:30 +00:00
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="action-buttons faded">
@if($currentUser->can('page-create'))
<a href="{{$book->getUrl() . '/page/create'}}" class="text-pos text-button"><i class="zmdi zmdi-plus"></i> New Page</a>
2015-08-30 16:53:30 +00:00
@endif
@if($currentUser->can('chapter-create'))
<a href="{{$book->getUrl() . '/chapter/create'}}" class="text-pos text-button"><i class="zmdi zmdi-plus"></i> New Chapter</a>
2015-08-30 16:53:30 +00:00
@endif
@if($currentUser->can('book-update'))
<a href="{{$book->getEditUrl()}}" class="text-primary text-button"><i class="zmdi zmdi-edit"></i>Edit</a>
<a href="{{ $book->getUrl() }}/sort" class="text-primary text-button"><i class="zmdi zmdi-sort"></i>Sort</a>
2015-08-30 16:53:30 +00:00
@endif
@if($currentUser->can('book-delete'))
<a href="{{ $book->getUrl() }}/delete" class="text-neg text-button"><i class="zmdi zmdi-delete"></i>Delete</a>
2015-08-30 16:53:30 +00:00
@endif
</div>
</div>
2015-07-15 21:55:49 +00:00
</div>
</div>
</div>
2015-07-15 21:55:49 +00:00
2015-12-30 18:38:18 +00:00
<div class="container" id="book-dashboard" ng-controller="BookShowController" book-id="{{ $book->id }}">
2015-08-30 16:53:30 +00:00
<div class="row">
<div class="col-md-7">
<h1>{{$book->name}}</h1>
2015-12-30 18:38:18 +00:00
<div class="book-content" ng-show="!searching">
<p class="text-muted" ng-non-bindable>{{$book->description}}</p>
2015-12-30 18:38:18 +00:00
<div class="page-list" ng-non-bindable>
<hr>
@if(count($bookChildren) > 0)
@foreach($bookChildren as $childElement)
@if($childElement->isA('chapter'))
@include('chapters/list-item', ['chapter' => $childElement])
@else
@include('pages/list-item', ['page' => $childElement])
@endif
<hr>
@endforeach
@else
<p class="text-muted">No pages or chapters have been created for this book.</p>
<p>
<a href="{{$book->getUrl() . '/page/create'}}" class="text-page"><i class="zmdi zmdi-file-text"></i>Create a new page</a>
&nbsp;&nbsp;<em class="text-muted">-or-</em>&nbsp;&nbsp;&nbsp;
<a href="{{$book->getUrl() . '/chapter/create'}}" class="text-chapter"><i class="zmdi zmdi-collection-bookmark"></i>Add a chapter</a>
</p>
2015-08-31 16:59:45 +00:00
<hr>
@endif
<p class="text-muted small">
Created {{$book->created_at->diffForHumans()}} @if($book->createdBy) by {{$book->createdBy->name}} @endif
<br>
Last Updated {{$book->updated_at->diffForHumans()}} @if($book->updatedBy) by {{$book->updatedBy->name}} @endif
2015-08-31 16:59:45 +00:00
</p>
</div>
</div>
2015-12-30 18:38:18 +00:00
<div class="search-results" ng-cloak ng-show="searching">
<h3 class="text-muted">Search Results <a ng-if="searching" ng-click="clearSearch()" class="text-small"><i class="zmdi zmdi-close"></i>Clear Search</a></h3>
<div ng-if="!searchResults">
@include('partials/loading-icon')
</div>
2015-12-30 18:38:18 +00:00
<div ng-bind-html="searchResults"></div>
2015-07-27 19:17:08 +00:00
</div>
2015-08-30 16:53:30 +00:00
</div>
2015-08-30 16:53:30 +00:00
<div class="col-md-4 col-md-offset-1">
<div class="margin-top large"></div>
<div class="search-box">
2015-12-30 18:38:18 +00:00
<form ng-submit="searchBook($event)">
<input ng-model="searchTerm" ng-change="checkSearchForm()" type="text" name="term" placeholder="Search This Book">
<button type="submit"><i class="zmdi zmdi-search"></i></button>
2015-12-30 18:38:18 +00:00
<button ng-if="searching" ng-click="clearSearch()" type="button"><i class="zmdi zmdi-close"></i></button>
</form>
</div>
<div class="activity anim fadeIn">
<h3>Recent Activity</h3>
@include('partials/activity-list', ['activity' => Activity::entityActivity($book, 20, 0)])
</div>
2015-08-30 16:53:30 +00:00
</div>
</div>
2015-07-15 21:55:49 +00:00
</div>
2015-07-12 19:01:42 +00:00
@stop