mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
615b2de433
Also cleaned up any other bits along the way.
38 lines
1.3 KiB
PHP
38 lines
1.3 KiB
PHP
|
|
<main class="content-wrap mt-m card">
|
|
<div class="grid half v-center no-row-gap">
|
|
<h1 class="list-heading">{{ trans('entities.books') }}</h1>
|
|
<div class="text-m-right my-m">
|
|
|
|
@include('partials.sort', ['options' => [
|
|
'name' => trans('common.sort_name'),
|
|
'created_at' => trans('common.sort_created_at'),
|
|
'updated_at' => trans('common.sort_updated_at'),
|
|
], 'order' => $order, 'sort' => $sort, 'type' => 'books'])
|
|
|
|
</div>
|
|
</div>
|
|
@if(count($books) > 0)
|
|
@if($view === 'list')
|
|
<div class="entity-list">
|
|
@foreach($books as $book)
|
|
@include('books.list-item', ['book' => $book])
|
|
@endforeach
|
|
</div>
|
|
@else
|
|
<div class="grid third">
|
|
@foreach($books as $key => $book)
|
|
@include('books.grid-item', ['book' => $book])
|
|
@endforeach
|
|
</div>
|
|
@endif
|
|
<div>
|
|
{!! $books->render() !!}
|
|
</div>
|
|
@else
|
|
<p class="text-muted">{{ trans('entities.books_empty') }}</p>
|
|
@if(userCan('books-create-all'))
|
|
<a href="{{ url("/create-book") }}" class="text-pos">@icon('edit'){{ trans('entities.create_now') }}</a>
|
|
@endif
|
|
@endif
|
|
</main> |