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

53 lines
2.0 KiB
PHP
Raw Normal View History

@extends('layouts.simple')
2015-09-06 13:35:53 +00:00
@section('body')
<div class="container">
2015-09-06 13:35:53 +00:00
<div class="my-s">
@include('entities.breadcrumbs', ['crumbs' => [
2019-01-31 20:37:12 +00:00
$book,
2019-02-17 11:44:02 +00:00
$book->getUrl('/sort') => [
'text' => trans('entities.books_sort'),
'icon' => 'sort',
]
2019-01-31 20:37:12 +00:00
]])
</div>
2015-09-06 13:35:53 +00:00
<div class="grid left-focus gap-xl">
2019-01-31 20:37:12 +00:00
<div>
<div component="book-sort" class="card content-wrap auto-height">
<h1 class="list-heading">{{ trans('entities.books_sort') }}</h1>
<p class="text-muted">{{ trans('entities.books_sort_desc') }}</p>
2022-11-15 11:24:31 +00:00
<div refs="book-sort@sortContainer">
@include('books.parts.sort-box', ['book' => $book, 'bookChildren' => $bookChildren])
</div>
2019-01-31 20:37:12 +00:00
<form action="{{ $book->getUrl('/sort') }}" method="POST">
{!! csrf_field() !!}
<input type="hidden" name="_method" value="PUT">
2022-11-15 11:24:31 +00:00
<input refs="book-sort@input" type="hidden" name="sort-tree">
2019-01-31 20:37:12 +00:00
<div class="list text-right">
<a href="{{ $book->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
<button class="button" type="submit">{{ trans('entities.books_sort_save') }}</button>
2019-01-31 20:37:12 +00:00
</div>
</form>
</div>
2015-09-06 13:35:53 +00:00
</div>
2019-01-31 20:37:12 +00:00
<div>
<main class="card content-wrap auto-height sticky-top-m">
<h2 class="list-heading">{{ trans('entities.books_sort_show_other') }}</h2>
<p class="text-muted">{{ trans('entities.books_sort_show_other_desc') }}</p>
@include('entities.selector', ['name' => 'books_list', 'selectorSize' => 'compact', 'entityTypes' => 'book', 'entityPermission' => 'update'])
</main>
</div>
2015-09-06 13:35:53 +00:00
</div>
2019-01-31 20:37:12 +00:00
2015-09-06 13:35:53 +00:00
</div>
@stop