]> BookStack Code Mirror - bookstack/blob - resources/views/shelves/restrictions.blade.php
1. Fixed translation for Copy and Reply
[bookstack] / resources / views / shelves / restrictions.blade.php
1 @extends('simple-layout')
2
3 @section('toolbar')
4     <div class="col-sm-12 faded">
5         @include('shelves._breadcrumbs', ['shelf' => $shelf])
6     </div>
7 @stop
8
9 @section('body')
10
11     <div class="container small">
12         <p>&nbsp;</p>
13         <div class="card">
14             <h3>@icon('lock') {{ trans('entities.shelves_permissions') }}</h3>
15             <div class="body">
16                 @include('form/restriction-form', ['model' => $shelf])
17             </div>
18         </div>
19
20         <p>&nbsp;</p>
21
22         <div class="card">
23             <h3>@icon('copy') {{ trans('entities.shelves_copy_permissions_to_books') }}</h3>
24             <div class="body">
25                 <p>{{ trans('entities.shelves_copy_permissions_explain') }}</p>
26                 <form action="{{ $shelf->getUrl('/copy-permissions') }}" method="post" class="text-right">
27                     {{ csrf_field() }}
28                     <button class="button">{{ trans('entities.shelves_copy_permissions') }}</button>
29                 </form>
30             </div>
31         </div>
32     </div>
33
34 @stop