2017-01-24 22:57:08 +00:00
|
|
|
{{-- Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com> --}}
|
2017-01-21 05:04:09 +00:00
|
|
|
|
|
|
|
{{-- Permission is hereby granted, free of charge, to any person obtaining a copy --}}
|
|
|
|
{{-- of this software and associated documentation files (the "Software"), to deal --}}
|
|
|
|
{{-- in the Software without restriction, including without limitation the rights --}}
|
|
|
|
{{-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell --}}
|
|
|
|
{{-- copies of the Software, and to permit persons to whom the Software is --}}
|
|
|
|
{{-- furnished to do so, subject to the following conditions: --}}
|
|
|
|
|
|
|
|
{{-- The above copyright notice and this permission notice shall be included in all --}}
|
|
|
|
{{-- copies or substantial portions of the Software. --}}
|
|
|
|
|
|
|
|
{{-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR --}}
|
|
|
|
{{-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, --}}
|
|
|
|
{{-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE --}}
|
|
|
|
{{-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER --}}
|
|
|
|
{{-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, --}}
|
|
|
|
{{-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE --}}
|
|
|
|
{{-- SOFTWARE. --}}
|
|
|
|
@extends('layouts.master')
|
|
|
|
|
|
|
|
@section('title')
|
|
|
|
@lang('server.users.new.header')
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('content-header')
|
|
|
|
<h1>@lang('server.users.edit.header')<small>@lang('server.users.edit.header_sub')</small></h1>
|
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li><a href="{{ route('index') }}">@lang('strings.home')</a></li>
|
|
|
|
<li><a href="{{ route('server.index', $server->uuidShort) }}">{{ $server->name }}</a></li>
|
|
|
|
<li><a href="{{ route('server.subusers', $server->uuidShort) }}">@lang('navigation.server.subusers')</a></li>
|
|
|
|
<li class="active">@lang('server.users.update')</li>
|
|
|
|
</ol>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
@can('edit-subuser', $server)
|
2017-02-10 00:38:54 +00:00
|
|
|
<form action="{{ route('server.subusers.view', [ 'uuid' => $server->uuidShort, 'id' => $subuser->id ]) }}" method="POST">
|
2017-01-21 05:04:09 +00:00
|
|
|
@endcan
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-12">
|
|
|
|
<div class="box box-primary">
|
|
|
|
<div class="box-header with-border">
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="control-label">@lang('server.users.new.email')</label>
|
|
|
|
<div>
|
|
|
|
{!! csrf_field() !!}
|
2017-02-10 00:38:54 +00:00
|
|
|
<input type="email" class="form-control" disabled value="{{ $subuser->user->email }}" />
|
2017-01-21 05:04:09 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@can('edit-subuser', $server)
|
|
|
|
<div class="box-body">
|
|
|
|
<div class="btn-group pull-left">
|
|
|
|
<a id="selectAllCheckboxes" class="btn btn-sm btn-default">@lang('strings.select_all')</a>
|
|
|
|
<a id="unselectAllCheckboxes" class="btn btn-sm btn-default">@lang('strings.select_none')</a>
|
|
|
|
</div>
|
|
|
|
<input type="submit" name="submit" value="@lang('server.users.update')" class="pull-right btn btn-sm btn-primary" />
|
|
|
|
</div>
|
|
|
|
@endcan
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
2017-03-30 19:30:59 +00:00
|
|
|
@foreach($permlist as $block => $perms)
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<div class="box">
|
|
|
|
<div class="box-header with-border">
|
|
|
|
<h3 class="box-title">@lang('server.users.new.' . $block . '_header')</h3>
|
2017-01-21 05:04:09 +00:00
|
|
|
</div>
|
2017-03-30 19:30:59 +00:00
|
|
|
<div class="box-body">
|
|
|
|
@foreach($perms as $permission => $daemon)
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="checkbox checkbox-primary no-margin-bottom">
|
|
|
|
<input id="{{ $permission }}" name="permissions[]" type="checkbox" @if(isset($permissions['power-start']))checked="checked"@endif @cannot('edit-subuser', $server)disabled="disabled"@endcannot value="{{ $permission }}"/>
|
|
|
|
<label for="{{ $permission }}" class="strong">
|
|
|
|
@lang('server.users.new.' . str_replace('-', '_', $permission) . '.title')
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<p class="text-muted small">@lang('server.users.new.' . str_replace('-', '_', $permission) . '.description')</p>
|
|
|
|
</div>
|
|
|
|
@endforeach
|
2017-01-21 05:04:09 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-03-30 19:30:59 +00:00
|
|
|
@if ($loop->iteration % 2 === 0)
|
|
|
|
<div class="clearfix visible-lg-block visible-md-block visible-sm-block"></div>
|
|
|
|
@endif
|
|
|
|
@endforeach
|
2017-01-21 05:04:09 +00:00
|
|
|
</div>
|
|
|
|
@can('edit-subuser', $server)
|
|
|
|
</form>
|
|
|
|
@endcan
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('footer-scripts')
|
|
|
|
@parent
|
2017-01-21 18:49:14 +00:00
|
|
|
{!! Theme::js('js/frontend/server.socket.js') !!}
|
2017-01-21 05:04:09 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function () {
|
|
|
|
$('#selectAllCheckboxes').on('click', function () {
|
|
|
|
$('input[type=checkbox]').prop('checked', true);
|
|
|
|
});
|
|
|
|
$('#unselectAllCheckboxes').on('click', function () {
|
|
|
|
$('input[type=checkbox]').prop('checked', false);
|
|
|
|
});
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
@endsection
|