cleaning day
This commit is contained in:
@@ -1,21 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('countries.title'),
|
||||
'subtitle' => __('countries.add'),
|
||||
'breadcrumb' => [
|
||||
__('Country.title') => 'Admin.Country.index'
|
||||
]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
{{ Form::open(['route' => 'Admin.Country.store', 'id' => 'country-form', 'autocomplete' => 'off']) }}
|
||||
|
||||
@include('components.save')
|
||||
|
||||
@component('components.card')
|
||||
@include('admin.Country.form')
|
||||
@endcomponent
|
||||
</form>
|
||||
|
||||
|
||||
@endsection
|
||||
@@ -1,12 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('DueDiligence.distributors.title'),
|
||||
'subtitle' => __('DueDiligence.distributors.list'),
|
||||
'breadcrumb' => [__('DueDiligence.distributors.title')]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
@include('apps.DueDiligence.admin.Distributor.partials.dashboard')
|
||||
|
||||
@endsection
|
||||
|
||||
@@ -1,23 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('countries.title'),
|
||||
'subtitle' => __('countries.edit'),
|
||||
'breadcrumb' => [
|
||||
__('countries.title') => 'Admin.Country.index'
|
||||
]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
{{ Form::open(['route' => 'Admin.Country.store', 'id' => 'country-form', 'autocomplete' => 'off']) }}
|
||||
|
||||
<input type="hidden" name="id" value="{{ $country['id'] }}">
|
||||
|
||||
@include('components.save')
|
||||
|
||||
@component('components.card')
|
||||
@include('admin.Country.form')
|
||||
@endcomponent
|
||||
|
||||
</form>
|
||||
|
||||
@endsection
|
||||
@@ -1,3 +0,0 @@
|
||||
<html>
|
||||
@include('apps.DueDiligence.admin.Distributor.partials.table', ['logo2' => public_path('/storage/partner/fundglobam/images/logo.png') ])
|
||||
</html>
|
||||
@@ -1,18 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ App::getLocale() }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
</head>
|
||||
<body>
|
||||
@include('apps.DueDiligence.admin.Distributor.partials.table', ['logo' => '/storage/partner/fundglobam/images/logo.png'])
|
||||
|
||||
<script>
|
||||
// window.print();
|
||||
// window.history.back();
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,31 +0,0 @@
|
||||
@include('load.form.select2')
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-6">
|
||||
{{ Form::label('name', __('name')) }}
|
||||
@include('components.form.input-translate', ['name' => 'name', 'value' => $country['name'] ?? null, 'translations' => $country->translations['name'] ?? null, 'required' => true])
|
||||
</div>
|
||||
<div class="col-6">
|
||||
{{ Form::label('zone', __('zone')) }}
|
||||
@include('components.form.select', ['name' => 'zone', 'value' => $country['zone_id'] ?? null, 'list' => $zones ?? null, 'required' => true])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-6">
|
||||
{{ Form::label('name', __('region')) }}
|
||||
@include('components.form.select', ['name' => 'region', 'value' => $country['region'] ?? null, 'list' => $regions ?? null, 'required' => true])
|
||||
</div>
|
||||
<div class="col-6">
|
||||
{{ Form::label('nale', __('subregion')) }}
|
||||
@include('components.form.select', ['name' => 'zone', 'value' => $country['subregion'] ?? null, 'list' => $subregions ?? null, 'required' => true])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@push('js')
|
||||
<script>
|
||||
$(function() {
|
||||
initSelect2();
|
||||
});
|
||||
</script>
|
||||
@endpush
|
||||
@@ -1,57 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('application.title'),
|
||||
'subtitle' => __('application.list'),
|
||||
'breadcrumb' => [
|
||||
]
|
||||
])
|
||||
|
||||
@include('load.form.select2')
|
||||
@include('load.form.toggle')
|
||||
|
||||
|
||||
@section('content')
|
||||
|
||||
<nav>
|
||||
<div class="nav nav-tabs">
|
||||
<a href="#dashboard" data-toggle="tab" class="nav-item nav-link" role="tab" aria-controls="dashboard" aria-selected="true">
|
||||
{{ __('dashboard') }}
|
||||
</a>
|
||||
<a href="#list" data-toggle="tab" class="nav-item nav-link active" role="tab" aria-controls="list" aria-selected="false">
|
||||
{{ __('list') }}
|
||||
</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="tab-content mb-0">
|
||||
|
||||
<div class="tab-pane fade" id="dashboard">
|
||||
@component('components.card')
|
||||
@include('admin.Core.App.Application.partials.dashboard')
|
||||
@endcomponent
|
||||
</div>
|
||||
|
||||
<div class="tab-pane fade show active" id="list">
|
||||
@component('components.card')
|
||||
@include('components.datatable', ['route' => route('Admin.Core.App.Application.index'), 'model' => 'applications', 'with_filters' => true, 'with_exports' => true, 'callback' => 'handleApplication();'])
|
||||
@endcomponent
|
||||
|
||||
@component('components.layout.modal-filters', ['title' => 'Filters', 'id' => 'modal-applications-filters'])
|
||||
@include('admin.Core.App.Application.partials.filters', ['model' => 'applications'])
|
||||
@endcomponent
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
|
||||
@push('js')
|
||||
<script>
|
||||
function handleApplication() {
|
||||
initToggle("{{ route('Admin.Core.App.Application.toggleActive') }}");
|
||||
}
|
||||
|
||||
$(document).ready(function () {
|
||||
initSelect2();
|
||||
});
|
||||
</script>
|
||||
@endpush
|
||||
@@ -1,31 +0,0 @@
|
||||
<h3 class="text-white">{{ __('documentation_types') }}</h3>
|
||||
|
||||
@include('components.datatable', ['route' => route('Admin.DocumentationType.index'), 'model' => 'documentation_types', 'with_filters' => true, 'with_exports' => true, 'create_callback' => 'DocumentationTypeCreate();', 'edit_callback' => 'DocumentationTypeEdit(id);'])
|
||||
|
||||
@component('components.layout.modal-filters', ['title' => 'Filters', 'id' => 'modal-documentation_types-filters'])
|
||||
@include('apps.admin.DocumentationType.partials.filters', ['model' => 'documentation_types'])
|
||||
@endcomponent
|
||||
|
||||
@push('js')
|
||||
<script>
|
||||
|
||||
function DocumentationTypeCreate(id) {
|
||||
var distributor_id = $('#distributor_id').val();
|
||||
var url_open = "{{ route('Admin.DocumentationType.modalCreate') }}" + '/' + distributor_id;
|
||||
var url_save = "{{ route('Admin.DocumentationType.storeAjax') }}";
|
||||
openModal("{{ __('country') }}", '#country-form', url_open, url_save, "DocumentationTypeRefresh();");
|
||||
}
|
||||
|
||||
function DocumentationTypeEdit(id) {
|
||||
var url_open = "{{ route('Admin.DocumentationType.modalEdit') }}" + '/' + id;
|
||||
var url_save = "{{ route('Admin.DocumentationType.storeAjax') }}";
|
||||
openModal("{{ __('country') }}", '#country-form', url_open, url_save, "DocumentationTypeRefresh();");
|
||||
}
|
||||
|
||||
function DocumentationTypeRefresh()
|
||||
{
|
||||
reloadDatatable("documentation_types");
|
||||
}
|
||||
|
||||
</script>
|
||||
@endpush
|
||||
@@ -1,76 +0,0 @@
|
||||
{{ Form::open(['route' => 'DueDiligence.Admin.CountryParam.store', 'id' => 'country_param-form', 'autocomplete' => 'off', 'files' => true]) }}
|
||||
|
||||
<input type="hidden" name="id" value="{{ $country_param['id'] ?? null }}">
|
||||
<input type="hidden" name="distributor_id" value="{{ $country_param['distributor_id'] ?? null }}">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-8">
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-md-4">
|
||||
{{ Form::label('name', __('date')) }}<br/>
|
||||
@include('components.form.datepicker', ['name' => 'date', 'value' => $country_param['date'] ?? null])
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
{{ Form::label('name', __('ope_rrai')) }}<br/>
|
||||
@include('components.form.input', ['name' => 'rrai', 'value' => $country_param['rrai'] ?? null])
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
{{ Form::label('name', __('color')) }}<br/>
|
||||
@include('components.form.select', ['name' => 'index', 'list' => App\Repositories\DueDiligence\CountryParams::getRiskColors(), 'value' => $country_param['index'] ?? null, 'with_empty' => ''])
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
{{ Form::label('name', __('broken_arrows')) }}<br/>
|
||||
@include('components.form.input', ['name' => 'broken', 'value' => $country_param['broken'] ?? null])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-12">
|
||||
{{ Form::label('name', __('comments')) }}<br/>
|
||||
@include('components.form.editor', ['name' => 'comments', 'value' => $country_param['comments'] ?? null])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col-4">
|
||||
@include('components.widgets.pdfPreview',['container' => 'country_param-file'])
|
||||
|
||||
{{ Form::label('name', __('file')) }}<br/>
|
||||
@include('components.file', ['name' => 'file', 'value' => $country_param['file'] ?? null])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
<script>
|
||||
|
||||
$(function() {
|
||||
initSelect2();
|
||||
var id = {{ $country_param['id'] ?? 'false' }};
|
||||
var distributor_id = {{ $country_param['distributor_id'] ?? 'false' }};
|
||||
|
||||
var path = '/DueDiligence/Admin/CountryParam';
|
||||
@if (isset($country_param['file']))
|
||||
var file = path + '/getDocument/' + distributor_id + '/' + encodeURIComponent("{{ $country_param['file'] }}");
|
||||
PDFObject.embed(file, "#country_param-file-preview");
|
||||
$('#country_param-file').removeClass('d-none');
|
||||
@endif
|
||||
|
||||
$('.file').fileinput({
|
||||
showCaption: false,
|
||||
dropZoneEnabled: false,
|
||||
showUpload: false,
|
||||
});
|
||||
|
||||
$('.datepicker').datetimepicker({
|
||||
format: 'L',
|
||||
@if (!isset($country_param['date']))
|
||||
date: new Date()
|
||||
@endif
|
||||
|
||||
});
|
||||
|
||||
$('.editor').tinymce({});
|
||||
});
|
||||
</script>
|
||||
@@ -1,2 +0,0 @@
|
||||
<form id="{{ $model }}-filters">
|
||||
</form>
|
||||
@@ -1,16 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('DueDiligence.distributors.title'),
|
||||
'subtitle' => __('DueDiligence.distributors.show'),
|
||||
'breadcrumb' => [
|
||||
__('DueDiligence.title') => 'DueDiligence.Admin.index',
|
||||
__('DueDiligence.distributors.title') => 'DueDiligence.Admin.Distributor.index'
|
||||
]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
@component('components.card')
|
||||
@include('apps.DueDiligence.admin.Distributor.form')
|
||||
@endcomponent
|
||||
|
||||
@endsection
|
||||
@@ -1,21 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('application_modules.title'),
|
||||
'subtitle' => __('application_modules.add'),
|
||||
'breadcrumb' => [
|
||||
__('Country.title') => 'Admin.Core.App.ApplicationModule.index'
|
||||
]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
{{ Form::open(['route' => 'Admin.Core.App.ApplicationModule.store', 'id' => 'application_module-form', 'autocomplete' => 'off']) }}
|
||||
|
||||
@include('components.save')
|
||||
|
||||
@component('components.card')
|
||||
@include('admin.Core.App.ApplicationModule.form')
|
||||
@endcomponent
|
||||
</form>
|
||||
|
||||
|
||||
@endsection
|
||||
@@ -1,12 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('DueDiligence.distributors.title'),
|
||||
'subtitle' => __('DueDiligence.distributors.list'),
|
||||
'breadcrumb' => [__('DueDiligence.distributors.title')]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
@include('apps.DueDiligence.admin.Distributor.partials.dashboard')
|
||||
|
||||
@endsection
|
||||
|
||||
@@ -1,24 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('application_modules.title'),
|
||||
'subtitle' => __('application_modules.edit'),
|
||||
'breadcrumb' => [
|
||||
__('Application_Module.title') => 'Admin.Core.App.ApplicationModule.index'
|
||||
]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
{{ Form::open(['route' => 'Admin.Core.App.ApplicationModule.store', 'id' => 'application_module-form', 'autocomplete' => 'off']) }}
|
||||
|
||||
<input type="hidden" name="id" value="{{ $application_module['id'] ?? null }}">
|
||||
|
||||
@include('components.save')
|
||||
|
||||
@component('components.card')
|
||||
@include('admin.Core.App.ApplicationModule.form')
|
||||
@endcomponent
|
||||
</form>
|
||||
|
||||
|
||||
@endsection
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
<html>
|
||||
@include('apps.DueDiligence.admin.Distributor.partials.table', ['logo2' => public_path('/storage/partner/fundglobam/images/logo.png') ])
|
||||
</html>
|
||||
@@ -1,18 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ App::getLocale() }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
</head>
|
||||
<body>
|
||||
@include('apps.DueDiligence.admin.Distributor.partials.table', ['logo' => '/storage/partner/fundglobam/images/logo.png'])
|
||||
|
||||
<script>
|
||||
// window.print();
|
||||
// window.history.back();
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,25 +0,0 @@
|
||||
<div class="row mb-3">
|
||||
<div class="col-6">
|
||||
{{ Form::label('name', __('application')) }}
|
||||
@include('components.form.select', ['name' => 'application_id', 'value' => $application_module['application_id'] ?? null, 'list' => $applications, 'required' => true, 'with_empty' => ''])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-6">
|
||||
{{ Form::label('name', __('name')) }}
|
||||
@include('components.form.input-translate', ['name' => 'name', 'value' => $application_module['name'] ?? null, 'translations' => $application_module->translations['name'] ?? null, 'required' => true])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@include('load.form.select2')
|
||||
@include('load.form.save')
|
||||
|
||||
@push('js')
|
||||
<script>
|
||||
$(function() {
|
||||
initSelect2();
|
||||
initSaveForm('.save', '#application_module-form');
|
||||
});
|
||||
</script>
|
||||
@endpush
|
||||
@@ -1,57 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('application_module.title'),
|
||||
'subtitle' => __('application_module.list'),
|
||||
'breadcrumb' => [
|
||||
]
|
||||
])
|
||||
|
||||
@include('load.form.select2')
|
||||
@include('load.form.toggle')
|
||||
|
||||
|
||||
@section('content')
|
||||
|
||||
<nav>
|
||||
<div class="nav nav-tabs">
|
||||
<a href="#dashboard" data-toggle="tab" class="nav-item nav-link" role="tab" aria-controls="dashboard" aria-selected="true">
|
||||
{{ __('dashboard') }}
|
||||
</a>
|
||||
<a href="#list" data-toggle="tab" class="nav-item nav-link active" role="tab" aria-controls="list" aria-selected="false">
|
||||
{{ __('list') }}
|
||||
</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="tab-content mb-0">
|
||||
|
||||
<div class="tab-pane fade" id="dashboard">
|
||||
@component('components.card')
|
||||
@include('admin.Core.App.ApplicationModule.partials.dashboard')
|
||||
@endcomponent
|
||||
</div>
|
||||
|
||||
<div class="tab-pane fade show active" id="list">
|
||||
@component('components.card')
|
||||
@include('components.datatable', ['route' => route('Admin.Core.App.ApplicationModule.index'), 'model' => 'application_modules', 'with_filters' => true, 'with_exports' => true, 'callback' => 'handleApplicationModule();'])
|
||||
@endcomponent
|
||||
|
||||
@component('components.layout.modal-filters', ['title' => 'Filters', 'id' => 'modal-application_modules-filters'])
|
||||
@include('admin.Core.App.ApplicationModule.partials.filters', ['model' => 'applications'])
|
||||
@endcomponent
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
|
||||
@push('js')
|
||||
<script>
|
||||
function handleApplicationModule() {
|
||||
initToggle("{{ route('Admin.Core.App.ApplicationModule.toggleActive') }}");
|
||||
}
|
||||
|
||||
$(document).ready(function () {
|
||||
initSelect2();
|
||||
});
|
||||
</script>
|
||||
@endpush
|
||||
@@ -1,31 +0,0 @@
|
||||
<h3 class="text-white">{{ __('documentation_types') }}</h3>
|
||||
|
||||
@include('components.datatable', ['route' => route('Admin.DocumentationType.index'), 'model' => 'documentation_types', 'with_filters' => true, 'with_exports' => true, 'create_callback' => 'DocumentationTypeCreate();', 'edit_callback' => 'DocumentationTypeEdit(id);'])
|
||||
|
||||
@component('components.layout.modal-filters', ['title' => 'Filters', 'id' => 'modal-documentation_types-filters'])
|
||||
@include('apps.admin.DocumentationType.partials.filters', ['model' => 'documentation_types'])
|
||||
@endcomponent
|
||||
|
||||
@push('js')
|
||||
<script>
|
||||
|
||||
function DocumentationTypeCreate(id) {
|
||||
var distributor_id = $('#distributor_id').val();
|
||||
var url_open = "{{ route('Admin.DocumentationType.modalCreate') }}" + '/' + distributor_id;
|
||||
var url_save = "{{ route('Admin.DocumentationType.storeAjax') }}";
|
||||
openModal("{{ __('country') }}", '#country-form', url_open, url_save, "DocumentationTypeRefresh();");
|
||||
}
|
||||
|
||||
function DocumentationTypeEdit(id) {
|
||||
var url_open = "{{ route('Admin.DocumentationType.modalEdit') }}" + '/' + id;
|
||||
var url_save = "{{ route('Admin.DocumentationType.storeAjax') }}";
|
||||
openModal("{{ __('country') }}", '#country-form', url_open, url_save, "DocumentationTypeRefresh();");
|
||||
}
|
||||
|
||||
function DocumentationTypeRefresh()
|
||||
{
|
||||
reloadDatatable("documentation_types");
|
||||
}
|
||||
|
||||
</script>
|
||||
@endpush
|
||||
@@ -1,76 +0,0 @@
|
||||
{{ Form::open(['route' => 'DueDiligence.Admin.CountryParam.store', 'id' => 'country_param-form', 'autocomplete' => 'off', 'files' => true]) }}
|
||||
|
||||
<input type="hidden" name="id" value="{{ $country_param['id'] ?? null }}">
|
||||
<input type="hidden" name="distributor_id" value="{{ $country_param['distributor_id'] ?? null }}">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-8">
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-md-4">
|
||||
{{ Form::label('name', __('date')) }}<br/>
|
||||
@include('components.form.datepicker', ['name' => 'date', 'value' => $country_param['date'] ?? null])
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
{{ Form::label('name', __('ope_rrai')) }}<br/>
|
||||
@include('components.form.input', ['name' => 'rrai', 'value' => $country_param['rrai'] ?? null])
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
{{ Form::label('name', __('color')) }}<br/>
|
||||
@include('components.form.select', ['name' => 'index', 'list' => App\Repositories\DueDiligence\CountryParams::getRiskColors(), 'value' => $country_param['index'] ?? null, 'with_empty' => ''])
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
{{ Form::label('name', __('broken_arrows')) }}<br/>
|
||||
@include('components.form.input', ['name' => 'broken', 'value' => $country_param['broken'] ?? null])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-12">
|
||||
{{ Form::label('name', __('comments')) }}<br/>
|
||||
@include('components.form.editor', ['name' => 'comments', 'value' => $country_param['comments'] ?? null])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col-4">
|
||||
@include('components.widgets.pdfPreview',['container' => 'country_param-file'])
|
||||
|
||||
{{ Form::label('name', __('file')) }}<br/>
|
||||
@include('components.file', ['name' => 'file', 'value' => $country_param['file'] ?? null])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
<script>
|
||||
|
||||
$(function() {
|
||||
initSelect2();
|
||||
var id = {{ $country_param['id'] ?? 'false' }};
|
||||
var distributor_id = {{ $country_param['distributor_id'] ?? 'false' }};
|
||||
|
||||
var path = '/DueDiligence/Admin/CountryParam';
|
||||
@if (isset($country_param['file']))
|
||||
var file = path + '/getDocument/' + distributor_id + '/' + encodeURIComponent("{{ $country_param['file'] }}");
|
||||
PDFObject.embed(file, "#country_param-file-preview");
|
||||
$('#country_param-file').removeClass('d-none');
|
||||
@endif
|
||||
|
||||
$('.file').fileinput({
|
||||
showCaption: false,
|
||||
dropZoneEnabled: false,
|
||||
showUpload: false,
|
||||
});
|
||||
|
||||
$('.datepicker').datetimepicker({
|
||||
format: 'L',
|
||||
@if (!isset($country_param['date']))
|
||||
date: new Date()
|
||||
@endif
|
||||
|
||||
});
|
||||
|
||||
$('.editor').tinymce({});
|
||||
});
|
||||
</script>
|
||||
@@ -1,2 +0,0 @@
|
||||
<form id="{{ $model }}-filters">
|
||||
</form>
|
||||
@@ -1,16 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('DueDiligence.distributors.title'),
|
||||
'subtitle' => __('DueDiligence.distributors.show'),
|
||||
'breadcrumb' => [
|
||||
__('DueDiligence.title') => 'DueDiligence.Admin.index',
|
||||
__('DueDiligence.distributors.title') => 'DueDiligence.Admin.Distributor.index'
|
||||
]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
@component('components.card')
|
||||
@include('apps.DueDiligence.admin.Distributor.form')
|
||||
@endcomponent
|
||||
|
||||
@endsection
|
||||
@@ -1,21 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('Admin.permission.title'),
|
||||
'subtitle' => __('Admin.permission.add'),
|
||||
'breadcrumb' => [
|
||||
__('Admin.permission.title') => 'Admin.Core.Auth.Permission.index',
|
||||
]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
{{ Form::open(['route' => 'Admin.Core.Auth.Permission.store', 'id' => 'form', 'autocomplete' => 'off']) }}
|
||||
|
||||
@include('components.save')
|
||||
|
||||
@component('components.card')
|
||||
@include('admin.Core.Auth.Permission.form')
|
||||
@endcomponent
|
||||
|
||||
</form>
|
||||
|
||||
@endsection
|
||||
@@ -1,23 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('Admin.permission.title'),
|
||||
'subtitle' => __('Admin.permission.add'),
|
||||
'breadcrumb' => [
|
||||
__('Admin.permission.title') => 'Admin.Core.Auth.Permission.index',
|
||||
]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
{{ Form::open(['route' => 'Admin.Core.Auth.Permission.store', 'id' => 'form', 'autocomplete' => 'off']) }}
|
||||
|
||||
<input type="hidden" name="id" value="{{ $permission['id'] }}">
|
||||
|
||||
@include('components.save')
|
||||
|
||||
@component('components.card')
|
||||
@include('admin.Core.Auth.Permission.form')
|
||||
@endcomponent
|
||||
|
||||
</form>
|
||||
|
||||
@endsection
|
||||
@@ -1,25 +0,0 @@
|
||||
<div class="row mb-3">
|
||||
<div class="col-6">
|
||||
<label for="name">{{ __('module') }}</label>
|
||||
@include('components.form.select', ['name' => 'application_module_id', 'value' => $permission['application_module_id'] ?? null, 'list' => $application_modules ?? null])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-6">
|
||||
<label for="name">{{ __('name') }}</label>
|
||||
@include('components.form.input', ['name' => 'name', 'value' => $permission['name'] ?? null])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@if (isset($roles) && count($roles))
|
||||
@include('admin.Core.Auth.User.roles')
|
||||
@endif
|
||||
|
||||
@include('load.form.save')
|
||||
|
||||
@push('js')
|
||||
<script>
|
||||
initSaveForm();
|
||||
</script>
|
||||
@endpush
|
||||
@@ -1,20 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('Permission.title'),
|
||||
'subtitle' => __('Permission.list'),
|
||||
'breadcrumb' => [
|
||||
__('Permission.title') => 'Admin.Core.Auth.Permission.index',
|
||||
]
|
||||
])
|
||||
|
||||
@include('load.form.select2')
|
||||
|
||||
@section('content')
|
||||
@component('components.card')
|
||||
@include('components.datatable', ['route' => route('Admin.Core.Auth.Permission.index'), 'model' => 'permissions'])
|
||||
@endcomponent
|
||||
|
||||
@component('components.layout.modal-filters', ['title' => 'Filters', 'id' => 'modal-filters'])
|
||||
@include('admin.Core.Auth.Permission.partials.filters')
|
||||
@endcomponent
|
||||
|
||||
@endsection
|
||||
@@ -1,55 +0,0 @@
|
||||
<div class="modobox-sub-header-modify-element-name">{{ $name }}</div>
|
||||
|
||||
<div class="row margin-bottom-0">
|
||||
<div class="col-sm-12 information_messages_manage p-2">
|
||||
<div class="alert alert-info noradius mb-0">
|
||||
<div class="bg-blue alert-icon">
|
||||
<i class="glyph-icon icon-info"></i>
|
||||
</div>
|
||||
<div class="alert-content">
|
||||
<h4 class="alert-title">{{ __('informations') }}</h4>
|
||||
<p>{{ __('manage_clients_for_user') }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="content-box noborder noradius mb-0" id="user_client_content_box">
|
||||
<h3 class="content-box-header noradius bg-default" id="toggle_button_user_clients">
|
||||
<span class="header-wrapper">
|
||||
<i class="glyph-icon icon-caret-right mr-1"></i>
|
||||
{{ __('clients') }}
|
||||
<span class="bs-badge badge-info {{ $label_opacity }}">
|
||||
{{ count($clients_selected) }}
|
||||
</span>
|
||||
</span>
|
||||
<div class="header-buttons-separator">
|
||||
<a href="#" id="user_clients_assoc_submit" class="assoc-submit-btn hidden icon-separator">
|
||||
<i class="glyph-icon icon-save"></i>
|
||||
</a>
|
||||
</div>
|
||||
</h3>
|
||||
<div class="content-box-wrapper noradius" style="display:none;">
|
||||
<div id="user_clients_assoc_list">
|
||||
<form class="form-horizontal form_inline" name="user_clients_assoc_form" onsubmit="return false;" method="POST">
|
||||
<div class="form-group margin-bottom-0">
|
||||
<div class="col-sm-12 padding-left-15 padding-right-15">
|
||||
<input type="hidden" name="user_id_client_assoc" id="user_id_client_assoc" value="{{ $id }}" class="form-control" />
|
||||
<select multiple class="multi-select form-no-control" name="user_clients_list" id="user_clients_list">
|
||||
@foreach ($clients as $client)
|
||||
<option value="{{ $client->id }}" {{ !($client->active) ? 'disabled' : '' }} {{ in_array($client->id, $clients_selected) ? 'selected' : '' }}>
|
||||
{{ $client->name }}
|
||||
</option>
|
||||
@endforeach
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
<form id="filters">
|
||||
|
||||
</form>
|
||||
@@ -1,28 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('families.title'),
|
||||
'subtitle' => __('families.title'),
|
||||
'breadcrumb' => [__('families.title')]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
<div class="row">
|
||||
|
||||
<div class="col-md-offset-2 col-md-8">
|
||||
|
||||
<div class="box box-info">
|
||||
<div class="box-body">
|
||||
<div class="col-md-6">
|
||||
<h3>{{ name }}</h3>
|
||||
<h4>
|
||||
</h4>
|
||||
</div>
|
||||
|
||||
<div class="col-md-12">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
@@ -1,21 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('Admin.role.title'),
|
||||
'subtitle' => __('Admin.role.add'),
|
||||
'breadcrumb' => [
|
||||
__('Admin.role.title') => 'Admin.Core.Auth.Role.index',
|
||||
]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
{{ Form::open(['route' => 'Admin.Core.Auth.Role.store', 'id' => 'form', 'autocomplete' => 'off']) }}
|
||||
|
||||
@include('components.save')
|
||||
|
||||
@component('components.card')
|
||||
@include('admin.Core.Auth.Role.form')
|
||||
@endcomponent
|
||||
|
||||
</form>
|
||||
|
||||
@endsection
|
||||
@@ -1,23 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('Admin.role.title'),
|
||||
'subtitle' => __('Admin.role.add'),
|
||||
'breadcrumb' => [
|
||||
__('Admin.role.title') => 'Admin.Core.Auth.Role.index',
|
||||
]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
{{ Form::open(['route' => 'Admin.Core.Auth.Role.store', 'id' => 'form', 'autocomplete' => 'off']) }}
|
||||
|
||||
<input type="hidden" name="id" value="{{ $role['id'] }}">
|
||||
|
||||
@include('components.save')
|
||||
|
||||
@component('components.card')
|
||||
@include('admin.Core.Auth.Role.form')
|
||||
@endcomponent
|
||||
|
||||
</form>
|
||||
|
||||
@endsection
|
||||
@@ -1,20 +0,0 @@
|
||||
<div class="row form-group">
|
||||
<label class="col-sm-3" for="name">{{ __('name') }} <sup>*</sup></label>
|
||||
<div class="col-sm-6">
|
||||
<input type="text" name="name" id="name" maxlength="100" required value="{{ $role['name'] }}" class="form-control">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<label class="control-label light" for="translated">{{ __('permissions') }}</label>
|
||||
<div class="col-12">
|
||||
@include('admin.Core.Auth.Role.table-permission')
|
||||
</div>
|
||||
|
||||
@include('load.form.save')
|
||||
|
||||
@push('js')
|
||||
<script>
|
||||
initSaveForm();
|
||||
initIcheck();
|
||||
</script>
|
||||
@endpush
|
||||
@@ -1,29 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('Role.title'),
|
||||
'subtitle' => __('Role.list'),
|
||||
'breadcrumb' => [
|
||||
__('Role.title') => 'Admin.Core.Auth.Role.index',
|
||||
]
|
||||
])
|
||||
|
||||
@include('load.form.select2')
|
||||
|
||||
@section('content')
|
||||
@component('components.card')
|
||||
@include('components.datatable', ['route' => route('Admin.Core.Auth.Role.index'), 'model' => 'roles', 'callback' => 'handleRoleActive();'])
|
||||
@endcomponent
|
||||
|
||||
@component('components.layout.modal-filters', ['title' => 'Filters', 'id' => 'modal-roles-filters'])
|
||||
@include('admin.Core.Auth.Role.partials.filters')
|
||||
@endcomponent
|
||||
@endsection
|
||||
|
||||
@include('load.form.toggle')
|
||||
|
||||
@push('js')
|
||||
<script>
|
||||
function handleRoleActive() {
|
||||
initToggle("{{ route('Admin.Core.Auth.Role.toggleActive') }}");
|
||||
}
|
||||
</script>
|
||||
@endpush
|
||||
@@ -1,47 +0,0 @@
|
||||
<div class="modobox-sub-header-modify-element-name">{{ $role->name }}</div>
|
||||
|
||||
<div class="row margin-bottom-0">
|
||||
<div class="col-sm-12 information_messages_manage padding-left-10 padding-right-10">
|
||||
<div class="alert alert-info noradius margin-bottom-0">
|
||||
<div class="bg-blue alert-icon">
|
||||
<i class="glyph-icon icon-info"></i>
|
||||
</div>
|
||||
<div class="alert-content">
|
||||
<h4 class="alert-title">{{ __('Gestion des droits') }}</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div id="rights" class="col-sm-12" style="padding: 30px;">
|
||||
|
||||
<form class="form-horizontal light" name="{{ $model->name }}_manage_form" onsubmit="return false;" method="POST">
|
||||
<input type="hidden" name="role_id" value="{{ $role->id }}" class="form-control" />
|
||||
|
||||
@foreach ($permissions as $app => $modules)
|
||||
<div>
|
||||
<h3 class="brand">
|
||||
<a class="collapsed" role="button" data-toggle="collapse" data-parent="#rights" href="#collapse_{{ $app }}" aria-expanded="true" aria-controls="collapse_{{ $app }}">
|
||||
{{ $app }}
|
||||
</a>
|
||||
</h3>
|
||||
</div>
|
||||
<div id="collapse_{{ $app }}" class="collapse content-box light p-2" role="tabpanel">
|
||||
|
||||
@foreach ($modules as $module => $actions)
|
||||
<h4 class="brand">{{ $module }}</h4>
|
||||
<div class="inline-group">
|
||||
@foreach ($actions as $permission)
|
||||
<label class="brand ml-3">{{ $permission->action }}</label>
|
||||
<input type="checkbox" name="permissions[{{ $permission->id }}]" value="1">
|
||||
@endforeach
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
</div>
|
||||
@endforeach
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
@@ -1,3 +0,0 @@
|
||||
<form id="filters">
|
||||
|
||||
</form>
|
||||
@@ -1,15 +0,0 @@
|
||||
@if (count($module['permissions']))
|
||||
<tr>
|
||||
<td>{{ $module['name'] }}</td>
|
||||
<td class="form-group light">
|
||||
<div class="row">
|
||||
@foreach ($module['permissions'] as $permission)
|
||||
<div class="col-4 overflow-hidden">
|
||||
<input type="checkbox" name="permissions[{{ $permission['id'] }}]" class="iCheck" data-skin="square" data-color="blue" value="1" @if (in_array($permission['id'],$role['permissions'])) checked @endif>
|
||||
<label class="control-label light">{{ $permission['name'] }}</label>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
@@ -1,28 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('families.title'),
|
||||
'subtitle' => __('families.title'),
|
||||
'breadcrumb' => [__('families.title')]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
<div class="row">
|
||||
|
||||
<div class="col-md-offset-2 col-md-8">
|
||||
|
||||
<div class="box box-info">
|
||||
<div class="box-body">
|
||||
<div class="col-md-6">
|
||||
<h3>{{ name }}</h3>
|
||||
<h4>
|
||||
</h4>
|
||||
</div>
|
||||
|
||||
<div class="col-md-12">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
@@ -1,13 +0,0 @@
|
||||
<table id="permissions_datatable" class="table table-striped table-bordered responsive nowrap noradius light" cellspacing="0" width="100%">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{ __('module') }}</th>
|
||||
<th>{{ __('actions') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach ($modules as $module)
|
||||
@include('admin.Core.Auth.Role.row-permission')
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
@@ -1,21 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('Admin.user.title'),
|
||||
'subtitle' => __('Admin.user.add'),
|
||||
'breadcrumb' => [
|
||||
__('Admin.user.title') => 'Admin.Core.Auth.User.index',
|
||||
]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
{{ Form::open(['route' => 'Admin.Core.Auth.User.store', 'id' => 'form', 'autocomplete' => 'off']) }}
|
||||
|
||||
@include('components.save')
|
||||
|
||||
@component('components.card')
|
||||
@include('admin.Core.Auth.User.form')
|
||||
@endcomponent
|
||||
|
||||
</form>
|
||||
|
||||
@endsection
|
||||
@@ -1,23 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('Admin.user.title'),
|
||||
'subtitle' => __('Admin.user.add'),
|
||||
'breadcrumb' => [
|
||||
__('Admin.user.title') => 'Admin.Core.Auth.User.index',
|
||||
]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
{{ Form::open(['route' => 'Admin.Core.Auth.User.store', 'id' => 'form', 'autocomplete' => 'off']) }}
|
||||
|
||||
<input type="hidden" name="id" value="{{ $user['id'] }}">
|
||||
|
||||
@include('components.save')
|
||||
|
||||
@component('components.card')
|
||||
@include('admin.Core.Auth.User.form')
|
||||
@endcomponent
|
||||
|
||||
</form>
|
||||
|
||||
@endsection
|
||||
@@ -1,65 +0,0 @@
|
||||
<div class="row">
|
||||
<div class="col-9">
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="last_name">{{ __('name') }} <sup>*</sup></label>
|
||||
@include('components.form.input', ['name' => 'last_name', 'value' => $user['last_name'] ?? ''])
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="first_name">{{ __('firstname') }} <sup>*</sup></label>
|
||||
@include('components.form.input', ['name' => 'first_name', 'value' => $user['first_name'] ?? ''])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="username">{{ __('login') }} <sup>*</sup></label>
|
||||
@include('components.form.input', ['name' => 'username', 'value' => $user['username'] ?? ''])
|
||||
</div>
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="password">{{ __('password') }} <sup>*</sup></label>
|
||||
@include('components.password', ['name' => 'password'])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-12 col-md-6 col-lg-4">
|
||||
<label for="email">{{ __('email') }} <sup>*</sup></label>
|
||||
@include('components.form.input', ['name' => 'email', 'value' => $user['email'] ?? null])
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-md-6 col-lg-4">
|
||||
<label for="phone">{{ __('phone') }}</label>
|
||||
@include('components.form.input', ['name' => 'phone', 'value' => $user['phone'] ?? null])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-12 col-md-6 col-lg-4">
|
||||
<label for="third_party_id">{{ __('entity') }} <sup>*</sup></label>
|
||||
@include('components.form.select', ['name' => 'third_party_id', 'list' => $third_parties ?? null, 'value' => $third_party_id ?? null, 'with_empty' => true ])
|
||||
</div>
|
||||
<div class="col-12 col-md-6 col-lg-4">
|
||||
<label for="team">{{ __('team') }} <sup>*</sup></label>
|
||||
@include('components.form.select', ['name' => 'team_id', 'list' => $teams ?? null, 'value' => $team_id ?? null, 'with_empty' => true ])
|
||||
</div>
|
||||
<div class="col-12 col-md-6 col-lg-4">
|
||||
<label for="status">{{ __('status') }} <sup>*</sup></label>
|
||||
@include('components.form.select', ['name' => 'status_id', 'list' => $statuses ?? null, 'value' => $status_id ?? null, 'with_empty' => true ])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-3">
|
||||
<div class="col-12 col-md-6 col-lg-4">
|
||||
<label class="control-label light" for="avatar">{{ __('avatar') }}</label>
|
||||
<input type="file" name="avatar" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@include('admin.Core.Auth.User.roles')
|
||||
|
||||
@@ -1,23 +0,0 @@
|
||||
<div class="modobox-sub-header-modify-element-name">{{ name }}</div>
|
||||
|
||||
<form class="form-horizontal light" name="update_form" onsubmit="return false;" method="POST">
|
||||
|
||||
<input type="hidden" name="id" id="id" value="{{ id }}" class="form-control" />
|
||||
|
||||
{{ include('Admin.elements.datatable.form-indication') }}
|
||||
|
||||
<div class="row form-group">
|
||||
<label class="col-sm-3 control-label dark" for="name">{{ translate('name') }} <sup>*</sup></label>
|
||||
<div class="col-sm-6">
|
||||
<input type="text" name="name" id="name" maxlength="100" required value="{{ name }}" class="form-control">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row form-group">
|
||||
<label class="col-sm-3 control-label dark" for="translated">{{ translate('english_translation') }} <sup>*</sup></label>
|
||||
<div class="col-sm-6">
|
||||
<input type="text" name="translated" id="translated" maxlength="30" required value="{{ translated }}" class="form-control">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
@@ -1,20 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('Team.title'),
|
||||
'subtitle' => __('Team.list'),
|
||||
'breadcrumb' => [
|
||||
__('Team.title') => 'Admin.Core.Auth.Team.index',
|
||||
]
|
||||
])
|
||||
|
||||
@include('load.form.select2')
|
||||
|
||||
@section('content')
|
||||
@component('components.card')
|
||||
@include('components.datatable', ['route' => route('Admin.Core.Auth.Team.index'), 'model' => 'users'])
|
||||
@endcomponent
|
||||
|
||||
@component('components.layout.modal-filters', ['title' => 'Filters', 'id' => 'modal-filters'])
|
||||
@include('admin.Core.Auth.Team.partials.filters')
|
||||
@endcomponent
|
||||
|
||||
@endsection
|
||||
@@ -1,55 +0,0 @@
|
||||
<div class="modobox-sub-header-modify-element-name">{{ $name }}</div>
|
||||
|
||||
<div class="row margin-bottom-0">
|
||||
<div class="col-sm-12 information_messages_manage p-2">
|
||||
<div class="alert alert-info noradius mb-0">
|
||||
<div class="bg-blue alert-icon">
|
||||
<i class="glyph-icon icon-info"></i>
|
||||
</div>
|
||||
<div class="alert-content">
|
||||
<h4 class="alert-title">{{ __('informations') }}</h4>
|
||||
<p>{{ __('manage_clients_for_user') }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="content-box noborder noradius mb-0" id="user_client_content_box">
|
||||
<h3 class="content-box-header noradius bg-default" id="toggle_button_user_clients">
|
||||
<span class="header-wrapper">
|
||||
<i class="glyph-icon icon-caret-right mr-1"></i>
|
||||
{{ __('clients') }}
|
||||
<span class="bs-badge badge-info {{ $label_opacity }}">
|
||||
{{ count($clients_selected) }}
|
||||
</span>
|
||||
</span>
|
||||
<div class="header-buttons-separator">
|
||||
<a href="#" id="user_clients_assoc_submit" class="assoc-submit-btn hidden icon-separator">
|
||||
<i class="glyph-icon icon-save"></i>
|
||||
</a>
|
||||
</div>
|
||||
</h3>
|
||||
<div class="content-box-wrapper noradius" style="display:none;">
|
||||
<div id="user_clients_assoc_list">
|
||||
<form class="form-horizontal form_inline" name="user_clients_assoc_form" onsubmit="return false;" method="POST">
|
||||
<div class="form-group margin-bottom-0">
|
||||
<div class="col-sm-12 padding-left-15 padding-right-15">
|
||||
<input type="hidden" name="user_id_client_assoc" id="user_id_client_assoc" value="{{ $id }}" class="form-control" />
|
||||
<select multiple class="multi-select form-no-control" name="user_clients_list" id="user_clients_list">
|
||||
@foreach ($clients as $client)
|
||||
<option value="{{ $client->id }}" {{ !($client->active) ? 'disabled' : '' }} {{ in_array($client->id, $clients_selected ?? []) ? 'selected' : '' }}>
|
||||
{{ $client->name }}
|
||||
</option>
|
||||
@endforeach
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,82 +0,0 @@
|
||||
{% import "macros.forms" as forms %}
|
||||
|
||||
<div class="modobox-sub-header-modify-element-name">{{ team.name }}</div>
|
||||
|
||||
<div class="row margin-bottom-0">
|
||||
<div class="col-sm-12 information_messages_manage padding-left-10 padding-right-10">
|
||||
<div class="alert alert-info noradius margin-bottom-0">
|
||||
<div class="bg-blue alert-icon">
|
||||
<i class="glyph-icon icon-info"></i>
|
||||
</div>
|
||||
<div class="alert-content">
|
||||
<h4 class="alert-title">{{ translate('informations') }}</h4>
|
||||
<p>{{ translate('select_elements_of_your_choice_to_associate_with_the_selected_team') }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="content-box noborder noradius margin-bottom-0" id="team_third_party_content_box">
|
||||
<h3 class="content-box-header noradius bg-default" id="toggle_button_team_third_parties_assoc">
|
||||
<span class="header-wrapper">
|
||||
<i class="glyph-icon icon-caret-right margin-right-5"></i>
|
||||
{{ translate('entity') }} <span class="bs-badge badge-info {{ label_opacity }}">{{ team.third_parties|length }}</span>
|
||||
</span>
|
||||
<div class="header-buttons-separator">
|
||||
<a href="#" id="teams_third_party_assoc_submit" class="assoc-submit-btn hidden icon-separator">
|
||||
<i class="glyph-icon icon-save"></i>
|
||||
</a>
|
||||
</div>
|
||||
</h3>
|
||||
<div class="content-box-wrapper noradius collapse">
|
||||
<div id="teams_third_parties_assoc_list">
|
||||
<form class="form-horizontal form_inline" name="teams_third_party_assoc_form" onsubmit="return false;" method="POST">
|
||||
<div class="form-group margin-bottom-0">
|
||||
<div class="col-sm-12 padding-left-15 padding-right-15">
|
||||
<input type="hidden" name="team_id_third_party_assoc" id="team_id_third_party_assoc" value="{{ team.id }}" class="form-control" />
|
||||
<select multiple class="multi-select form-no-control" name="team_third_parties_list" id="team_third_parties_list">
|
||||
{{ forms.options(third_parties, team.third_parties) }}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="content-box noborder noradius margin-bottom-0" id="team_user_status_content_box">
|
||||
<h3 class="content-box-header noradius bg-default" id="toggle_button_team_user_statuses_assoc">
|
||||
<span class="header-wrapper">
|
||||
<i class="glyph-icon icon-caret-right margin-right-5"></i>
|
||||
{{ translate('user_statuses') }} <span class="bs-badge badge-info {{ user_label_opacity }}"> {{ team.roles|length }} </span>
|
||||
</span>
|
||||
<div class="header-buttons-separator">
|
||||
<a href="#" id="teams_user_status_assoc_submit" class="assoc-submit-btn hidden icon-separator">
|
||||
<i class="glyph-icon icon-save"></i>
|
||||
</a>
|
||||
</div>
|
||||
</h3>
|
||||
<div class="content-box-wrapper noradius" style="display:none;">
|
||||
<div id="teams_user_statuses_assoc_list">
|
||||
<form class="form-horizontal form_inline" name="teams_user_status_assoc_form" onsubmit="return false;" method="POST">
|
||||
<div class="form-group margin-bottom-0">
|
||||
<div class="col-sm-12 padding-left-15 padding-right-15">
|
||||
<input type="hidden" name="team_id_user_status_assoc" id="team_id_user_status_assoc" value="{{ team.id }}" class="form-control" />
|
||||
<select multiple class="multi-select form-no-control" name="team_user_statuses_list" id="team_user_statuses_list">
|
||||
{{ forms.html_multioptions(roles, team.roles) }}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
<form id="filters">
|
||||
|
||||
</form>
|
||||
@@ -1,28 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('families.title'),
|
||||
'subtitle' => __('families.title'),
|
||||
'breadcrumb' => [__('families.title')]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
<div class="row">
|
||||
|
||||
<div class="col-md-offset-2 col-md-8">
|
||||
|
||||
<div class="box box-info">
|
||||
<div class="box-body">
|
||||
<div class="col-md-6">
|
||||
<h3>{{ name }}</h3>
|
||||
<h4>
|
||||
</h4>
|
||||
</div>
|
||||
|
||||
<div class="col-md-12">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
@@ -1,21 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('Admin.user.title'),
|
||||
'subtitle' => __('Admin.user.add'),
|
||||
'breadcrumb' => [
|
||||
__('Admin.user.title') => 'Admin.Core.Auth.User.index',
|
||||
]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
{{ Form::open(['route' => 'Admin.Core.Auth.User.store', 'id' => 'form', 'autocomplete' => 'off']) }}
|
||||
|
||||
@include('components.save')
|
||||
|
||||
@component('components.card')
|
||||
@include('admin.Core.Auth.User.form')
|
||||
@endcomponent
|
||||
|
||||
</form>
|
||||
|
||||
@endsection
|
||||
@@ -1,23 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('Admin.user.title'),
|
||||
'subtitle' => __('Admin.user.add'),
|
||||
'breadcrumb' => [
|
||||
__('Admin.user.title') => 'Admin.Core.Auth.User.index',
|
||||
]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
{{ Form::open(['route' => 'Admin.Core.Auth.User.store', 'id' => 'form', 'autocomplete' => 'off']) }}
|
||||
|
||||
<input type="hidden" name="id" value="{{ $user['id'] }}">
|
||||
|
||||
@include('components.save')
|
||||
|
||||
@component('components.card')
|
||||
@include('admin.Core.Auth.User.form')
|
||||
@endcomponent
|
||||
|
||||
</form>
|
||||
|
||||
@endsection
|
||||
@@ -1,65 +0,0 @@
|
||||
<div class="row">
|
||||
<div class="col-9">
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="last_name">{{ __('name') }} <sup>*</sup></label>
|
||||
@include('components.form.input', ['name' => 'last_name', 'value' => $user['last_name'] ?? ''])
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="first_name">{{ __('firstname') }} <sup>*</sup></label>
|
||||
@include('components.form.input', ['name' => 'first_name', 'value' => $user['first_name'] ?? ''])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="username">{{ __('login') }} <sup>*</sup></label>
|
||||
@include('components.form.input', ['name' => 'username', 'value' => $user['username'] ?? ''])
|
||||
</div>
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="password">{{ __('password') }} <sup>*</sup></label>
|
||||
@include('components.password', ['name' => 'password'])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-12 col-md-6 col-lg-4">
|
||||
<label for="email">{{ __('email') }} <sup>*</sup></label>
|
||||
@include('components.form.input', ['name' => 'email', 'value' => $user['email'] ?? null])
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-md-6 col-lg-4">
|
||||
<label for="phone">{{ __('phone') }}</label>
|
||||
@include('components.form.input', ['name' => 'phone', 'value' => $user['phone'] ?? null])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-12 col-md-6 col-lg-4">
|
||||
<label for="third_party_id">{{ __('entity') }} <sup>*</sup></label>
|
||||
@include('components.form.select', ['name' => 'third_party_id', 'list' => $third_parties ?? null, 'value' => $third_party_id ?? null, 'with_empty' => true ])
|
||||
</div>
|
||||
<div class="col-12 col-md-6 col-lg-4">
|
||||
<label for="team">{{ __('team') }} <sup>*</sup></label>
|
||||
@include('components.form.select', ['name' => 'team_id', 'list' => $teams ?? null, 'value' => $team_id ?? null, 'with_empty' => true ])
|
||||
</div>
|
||||
<div class="col-12 col-md-6 col-lg-4">
|
||||
<label for="status">{{ __('status') }} <sup>*</sup></label>
|
||||
@include('components.form.select', ['name' => 'status_id', 'list' => $statuses ?? null, 'value' => $status_id ?? null, 'with_empty' => true ])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-3">
|
||||
<div class="col-12 col-md-6 col-lg-4">
|
||||
<label class="control-label light" for="avatar">{{ __('avatar') }}</label>
|
||||
<input type="file" name="avatar" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@include('admin.Core.Auth.User.roles')
|
||||
|
||||
@@ -1,57 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('User.title'),
|
||||
'subtitle' => __('User.list'),
|
||||
'breadcrumb' => [
|
||||
__('User.title') => 'Admin.Core.Auth.User.index',
|
||||
]
|
||||
])
|
||||
|
||||
@include('load.form.select2')
|
||||
|
||||
@section('content')
|
||||
|
||||
@component('components.card')
|
||||
@include('components.datatable', ['route' => route('Admin.Core.Auth.User.index'), 'model' => 'users', 'callback' => 'handleUser();', 'create_callback' => 'UserCreate();', 'edit_callback' => 'UserEdit(id);', 'with_filters' => true])
|
||||
@endcomponent
|
||||
|
||||
@component('components.layout.modal-filters', ['title' => 'Filters', 'id' => 'modal-users-filters'])
|
||||
@include('admin.Core.Auth.User.partials.filters', ['model' => 'users'])
|
||||
@endcomponent
|
||||
|
||||
@endsection
|
||||
|
||||
@include('load.layout.chevron')
|
||||
@include('load.layout.modal')
|
||||
@include('load.form.toggle')
|
||||
@include('load.form.upload.upload')
|
||||
|
||||
@push('js')
|
||||
<script>
|
||||
|
||||
function handleUser() {
|
||||
initToggle("{{ route('Admin.Core.Auth.User.toggleActive') }}");
|
||||
}
|
||||
|
||||
function UserCreate() {
|
||||
var url_open = "{{ route('Admin.Core.Auth.User.modalCreate') }}";
|
||||
var url_save = "{{ route('Admin.Core.Auth.User.storeAjax') }}";
|
||||
openModal("{{ __('user') }}", '#user-form', url_open, url_save, "UserRefresh();");
|
||||
}
|
||||
|
||||
function UserEdit(id) {
|
||||
var url_open = "{{ route('Admin.Core.Auth.User.modalEdit') }}/" + id;
|
||||
var url_save = "{{ route('Admin.Core.Auth.User.storeAjax') }}";
|
||||
openModal("{{ __('user') }}", '#user-form', url_open, url_save, "UserRefresh();");
|
||||
}
|
||||
|
||||
function UserRefresh() {
|
||||
reloadDatatable('users');
|
||||
handleUser();
|
||||
}
|
||||
|
||||
$(document).ready(function () {
|
||||
initSelect2();
|
||||
});
|
||||
|
||||
</script>
|
||||
@endpush
|
||||
@@ -1,55 +0,0 @@
|
||||
<div class="modobox-sub-header-modify-element-name">{{ $name }}</div>
|
||||
|
||||
<div class="row margin-bottom-0">
|
||||
<div class="col-sm-12 information_messages_manage p-2">
|
||||
<div class="alert alert-info noradius mb-0">
|
||||
<div class="bg-blue alert-icon">
|
||||
<i class="glyph-icon icon-info"></i>
|
||||
</div>
|
||||
<div class="alert-content">
|
||||
<h4 class="alert-title">{{ __('informations') }}</h4>
|
||||
<p>{{ __('manage_clients_for_user') }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="content-box noborder noradius mb-0" id="user_client_content_box">
|
||||
<h3 class="content-box-header noradius bg-default" id="toggle_button_user_clients">
|
||||
<span class="header-wrapper">
|
||||
<i class="glyph-icon icon-caret-right mr-1"></i>
|
||||
{{ __('clients') }}
|
||||
<span class="bs-badge badge-info {{ $label_opacity }}">
|
||||
{{ count($clients_selected) }}
|
||||
</span>
|
||||
</span>
|
||||
<div class="header-buttons-separator">
|
||||
<a href="#" id="user_clients_assoc_submit" class="assoc-submit-btn hidden icon-separator">
|
||||
<i class="glyph-icon icon-save"></i>
|
||||
</a>
|
||||
</div>
|
||||
</h3>
|
||||
<div class="content-box-wrapper noradius" style="display:none;">
|
||||
<div id="user_clients_assoc_list">
|
||||
<form class="form-horizontal form_inline" name="user_clients_assoc_form" onsubmit="return false;" method="POST">
|
||||
<div class="form-group margin-bottom-0">
|
||||
<div class="col-sm-12 padding-left-15 padding-right-15">
|
||||
<input type="hidden" name="user_id_client_assoc" id="user_id_client_assoc" value="{{ $id }}" class="form-control" />
|
||||
<select multiple class="multi-select form-no-control" name="user_clients_list" id="user_clients_list">
|
||||
@foreach ($clients as $client)
|
||||
<option value="{{ $client->id }}" {{ !($client->active) ? 'disabled' : '' }} {{ in_array($client->id, $clients_selected) ? 'selected' : '' }}>
|
||||
{{ $client->name }}
|
||||
</option>
|
||||
@endforeach
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,61 +0,0 @@
|
||||
{{ Form::open(['route' => 'Admin.Core.Auth.User.store', 'id' => 'user-form', 'autocomplete' => 'off']) }}
|
||||
|
||||
<input type="hidden" name="id" value="{{ $user['id'] ?? null }}">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-9">
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="last_name">{{ __('name') }} <sup>*</sup></label>
|
||||
@include('components.form.input', ['name' => 'last_name', 'value' => $user['last_name'] ?? ''])
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="first_name">{{ __('firstname') }} <sup>*</sup></label>
|
||||
@include('components.form.input', ['name' => 'first_name', 'value' => $user['first_name'] ?? ''])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="username">{{ __('login') }} <sup>*</sup></label>
|
||||
@include('components.form.input', ['name' => 'username', 'value' => $user['username'] ?? ''])
|
||||
</div>
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="password">{{ __('password') }} <sup>*</sup></label>
|
||||
@include('components.password', ['name' => 'password'])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="email">{{ __('email') }} <sup>*</sup></label>
|
||||
@include('components.form.input', ['name' => 'email', 'value' => $user['email'] ?? null])
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="phone">{{ __('phone') }}</label>
|
||||
@include('components.form.input', ['name' => 'phone', 'value' => $user['phone'] ?? null])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-3">
|
||||
<div class="col-12">
|
||||
<label class="control-label light" for="avatar">{{ __('avatar') }}</label>
|
||||
@include('components.file', ['name' => 'avatar'])
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@include('admin.Core.Auth.User.roles')
|
||||
|
||||
</form>
|
||||
|
||||
<script>
|
||||
$(function() {
|
||||
initUpload();
|
||||
});
|
||||
</script>
|
||||
@@ -1,59 +0,0 @@
|
||||
{{ Form::open(['route' => 'Admin.Core.Auth.User.store', 'id' => 'user-form', 'autocomplete' => 'off']) }}
|
||||
|
||||
<input type="hidden" name="id" value="{{ $user['id'] ?? null }}">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-9">
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="last_name">{{ __('name') }} <sup>*</sup></label>
|
||||
@include('components.form.input', ['name' => 'last_name', 'value' => $user['last_name'] ?? ''])
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="first_name">{{ __('firstname') }} <sup>*</sup></label>
|
||||
@include('components.form.input', ['name' => 'first_name', 'value' => $user['first_name'] ?? ''])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="username">{{ __('login') }} <sup>*</sup></label>
|
||||
@include('components.form.input', ['name' => 'username', 'value' => $user['username'] ?? ''])
|
||||
</div>
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="password">{{ __('password') }} <sup>*</sup></label>
|
||||
@include('components.password', ['name' => 'password'])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="email">{{ __('email') }} <sup>*</sup></label>
|
||||
@include('components.form.input', ['name' => 'email', 'value' => $user['email'] ?? null])
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-md-6">
|
||||
<label for="phone">{{ __('phone') }}</label>
|
||||
@include('components.form.input', ['name' => 'phone', 'value' => $user['phone'] ?? null])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-3">
|
||||
<div class="col-12">
|
||||
<label class="control-label light" for="avatar">{{ __('avatar') }}</label>
|
||||
@include('components.file', ['name' => 'avatar'])
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
<script>
|
||||
$(function() {
|
||||
initUpload();
|
||||
});
|
||||
</script>
|
||||
@@ -1,3 +0,0 @@
|
||||
<form id="user-filters">
|
||||
|
||||
</form>
|
||||
@@ -1,7 +0,0 @@
|
||||
<button type="button" class="btn btn-xs btn-secondary mr-2" data-toggle="popover" title="{{ $user->email }}" data-content="{{ $user->email }}">
|
||||
<i class="fa fa-fw fa-at"></i>
|
||||
</button>
|
||||
|
||||
<button type="button" class="btn btn-xs btn-secondary mr-2" data-toggle="popover" title="{{ $user->phone }}" data-content="{{ $user->phone }}">
|
||||
<i class="fa fa-fw fa-phone"></i>
|
||||
</button>
|
||||
@@ -1,3 +0,0 @@
|
||||
@foreach ($roles as $role)
|
||||
{{ $role->name }}
|
||||
@endforeach
|
||||
@@ -1,19 +0,0 @@
|
||||
@if (App\Repositories\Core\Auth\Users::hasPermission('users_crud_*'))
|
||||
|
||||
@component('components.layout.box-collapse', ['title' => __('roles'), 'id' => 'form-roles'])
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
@foreach ($roles as $id => $role)
|
||||
<div class="row pt-2 ml-0">
|
||||
@if (App\Repositories\Core\Auth\Users::hasPermission('users_crud_' . $role))
|
||||
<div class="col-6">
|
||||
<input type="checkbox" name="roles[{{ $id }}]" value="1" {{ in_array($id, $user['roles']) ? 'checked' : null }} class="iCheck" data-skin="square" data-color="blue">
|
||||
<label class="light text-uppercase ml-2">{{ $role }}</label>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
@endcomponent
|
||||
@endif
|
||||
@@ -1,28 +0,0 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('families.title'),
|
||||
'subtitle' => __('families.title'),
|
||||
'breadcrumb' => [__('families.title')]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
<div class="row">
|
||||
|
||||
<div class="col-md-offset-2 col-md-8">
|
||||
|
||||
<div class="box box-info">
|
||||
<div class="box-body">
|
||||
<div class="col-md-6">
|
||||
<h3>{{ name }}</h3>
|
||||
<h4>
|
||||
</h4>
|
||||
</div>
|
||||
|
||||
<div class="col-md-12">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
Reference in New Issue
Block a user