2019-06-23 08:29:58 -04:00
|
|
|
<form action="{{ $model->getUrl('/permissions') }}" method="POST" entity-permissions-editor>
|
2016-02-28 05:49:41 -05:00
|
|
|
{!! csrf_field() !!}
|
|
|
|
<input type="hidden" name="_method" value="PUT">
|
|
|
|
|
2020-12-31 12:25:20 -05:00
|
|
|
<div class="grid half left-focus v-center">
|
|
|
|
<div>
|
|
|
|
<p class="mb-none mt-m">{{ trans('entities.permissions_intro') }}</p>
|
|
|
|
<div>
|
|
|
|
@include('form.checkbox', [
|
|
|
|
'name' => 'restricted',
|
|
|
|
'label' => trans('entities.permissions_enable'),
|
|
|
|
])
|
|
|
|
</div>
|
2020-12-31 10:27:25 -05:00
|
|
|
</div>
|
2020-12-31 12:25:20 -05:00
|
|
|
<div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="owner">{{ trans('entities.permissions_owner') }}</label>
|
2022-05-14 11:05:29 -04:00
|
|
|
@include('form.user-select', ['user' => $model->ownedBy, 'name' => 'owned_by'])
|
2020-12-31 12:25:20 -05:00
|
|
|
</div>
|
2020-12-31 10:27:25 -05:00
|
|
|
</div>
|
2016-02-28 05:49:41 -05:00
|
|
|
</div>
|
|
|
|
|
2021-08-28 10:44:44 -04:00
|
|
|
@if($model instanceof \BookStack\Entities\Models\Bookshelf)
|
|
|
|
<p class="text-warn">{{ trans('entities.shelves_permissions_cascade_warning') }}</p>
|
|
|
|
@endif
|
|
|
|
|
2020-12-31 12:25:20 -05:00
|
|
|
<hr>
|
|
|
|
|
2019-06-23 08:29:58 -04:00
|
|
|
<table permissions-table class="table permissions-table toggle-switch-list" style="{{ !$model->restricted ? 'display: none' : '' }}">
|
2016-02-28 05:49:41 -05:00
|
|
|
<tr>
|
2016-12-03 08:31:54 -05:00
|
|
|
<th>{{ trans('common.role') }}</th>
|
2021-06-04 17:36:30 -04:00
|
|
|
<th colspan="{{ $model->isA('page') ? '3' : '4' }}">
|
2019-04-13 07:07:27 -04:00
|
|
|
{{ trans('common.actions') }}
|
|
|
|
<a href="#" permissions-table-toggle-all class="text-small ml-m text-primary">{{ trans('common.toggle_all') }}</a>
|
|
|
|
</th>
|
2016-02-28 05:49:41 -05:00
|
|
|
</tr>
|
2019-10-05 07:55:01 -04:00
|
|
|
@foreach(\BookStack\Auth\Role::restrictable() as $role)
|
2016-02-28 05:49:41 -05:00
|
|
|
<tr>
|
2019-04-13 07:07:27 -04:00
|
|
|
<td width="33%" class="pt-m">
|
|
|
|
{{ $role->display_name }}
|
|
|
|
<a href="#" permissions-table-toggle-all-in-row class="text-small float right ml-m text-primary">{{ trans('common.toggle_all') }}</a>
|
|
|
|
</td>
|
2019-02-03 08:45:45 -05:00
|
|
|
<td>@include('form.restriction-checkbox', ['name'=>'restrictions', 'label' => trans('common.view'), 'action' => 'view'])</td>
|
2016-02-28 05:49:41 -05:00
|
|
|
@if(!$model->isA('page'))
|
2019-02-03 08:45:45 -05:00
|
|
|
<td>@include('form.restriction-checkbox', ['name'=>'restrictions', 'label' => trans('common.create'), 'action' => 'create'])</td>
|
2016-02-28 05:49:41 -05:00
|
|
|
@endif
|
2019-02-03 08:45:45 -05:00
|
|
|
<td>@include('form.restriction-checkbox', ['name'=>'restrictions', 'label' => trans('common.update'), 'action' => 'update'])</td>
|
|
|
|
<td>@include('form.restriction-checkbox', ['name'=>'restrictions', 'label' => trans('common.delete'), 'action' => 'delete'])</td>
|
2016-02-28 05:49:41 -05:00
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</table>
|
|
|
|
|
2017-08-26 08:24:55 -04:00
|
|
|
<div class="text-right">
|
|
|
|
<a href="{{ $model->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
|
2019-08-25 07:40:04 -04:00
|
|
|
<button type="submit" class="button">{{ trans('entities.permissions_save') }}</button>
|
2017-08-26 08:24:55 -04:00
|
|
|
</div>
|
2016-02-28 05:49:41 -05:00
|
|
|
</form>
|