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

50 lines
1.7 KiB
PHP
Raw Normal View History

2017-08-20 12:57:25 +00:00
@extends('sidebar-layout')
2015-07-12 19:01:42 +00:00
2017-08-20 12:57:25 +00:00
@section('toolbar')
<div class="col-xs-1"></div>
<div class="col-xs-11 faded">
<div class="action-buttons">
@if($currentUser->can('book-create-all'))
<a href="{{ baseUrl("/books/create") }}" class="text-pos text-button"><i class="zmdi zmdi-plus"></i>{{ trans('entities.books_create') }}</a>
@endif
</div>
</div>
@stop
2015-07-12 19:01:42 +00:00
2017-08-20 12:57:25 +00:00
@section('sidebar')
@if($recents)
<div id="recents" class="card">
<h3><i class="zmdi zmdi-eye"></i> {{ trans('entities.recently_viewed') }}</h3>
@include('partials/entity-list', ['entities' => $recents, 'style' => 'compact'])
2015-07-12 19:01:42 +00:00
</div>
2017-08-20 12:57:25 +00:00
@endif
<div id="popular" class="card">
<h3><i class="zmdi zmdi-fire"></i> {{ trans('entities.books_popular') }}</h3>
@if(count($popular) > 0)
@include('partials/entity-list', ['entities' => $popular, 'style' => 'compact'])
@else
<div class="body text-muted">{{ trans('entities.books_popular_empty') }}</div>
@endif
</div>
2017-08-20 12:57:25 +00:00
@stop
2015-07-12 19:01:42 +00:00
2017-08-20 12:57:25 +00:00
@section('body')
2015-07-12 19:01:42 +00:00
2017-08-20 12:57:25 +00:00
<div class="container small" ng-non-bindable>
<h1>{{ trans('entities.books') }}</h1>
@if(count($books) > 0)
@foreach($books as $book)
@include('books/list-item', ['book' => $book])
<hr>
@endforeach
{!! $books->render() !!}
@else
<p class="text-muted">{{ trans('entities.books_empty') }}</p>
@if(userCan('books-create-all'))
<a href="{{ baseUrl("/books/create") }}" class="text-pos"><i class="zmdi zmdi-edit"></i>{{ trans('entities.create_one_now') }}</a>
@endif
@endif
2015-08-31 10:43:28 +00:00
</div>
2015-07-15 21:55:49 +00:00
2015-07-12 19:01:42 +00:00
@stop