mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 01:32:38 +00:00
45 lines
761 B
PHP
45 lines
761 B
PHP
@extends('layout.default')
|
|
|
|
@section('title', $__t('Permissions for user %s', GetUserDisplayName($user)))
|
|
|
|
@push('pageScripts')
|
|
<script>
|
|
Grocy.EditObjectId = {{ $user->id }};
|
|
</script>
|
|
@endpush
|
|
|
|
@push('pageStyles')
|
|
<style>
|
|
ul {
|
|
list-style-type: none;
|
|
}
|
|
</style>
|
|
@endpush
|
|
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col">
|
|
<h2 class="title">@yield('title')</h2>
|
|
</div>
|
|
</div>
|
|
|
|
<hr class="my-2">
|
|
|
|
<div class="row">
|
|
<div class="col">
|
|
<ul class="pl-0">
|
|
@foreach($permissions as $perm)
|
|
<li>
|
|
@include('components.userpermission_select', array(
|
|
'permission' => $perm
|
|
))
|
|
</li>
|
|
@endforeach
|
|
</ul>
|
|
<button id="permission-save"
|
|
class="btn btn-success"
|
|
type="submit">{{ $__t('Save') }}</button>
|
|
</div>
|
|
</div>
|
|
@endsection
|