64 lines
No EOL
2.8 KiB
PHP
Executable file
64 lines
No EOL
2.8 KiB
PHP
Executable file
@extends('layouts.layout-2')
|
|
|
|
@section('content')
|
|
<h4 class="font-weight-bold py-3 mb-1">
|
|
E-Mail Vorlagen
|
|
</h4>
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-datatable table-responsive">
|
|
<table class="datatables-default table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th style="max-width: 60px;"> </th>
|
|
<th>{{__('Betreff')}}</th>
|
|
<th>{{__('sichtbar')}}</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($email_template as $value)
|
|
<tr>
|
|
<td data-sort="{{ $value->id }}">
|
|
<button type="button" class="btn btn-sm btn-primary" data-toggle="modal"
|
|
data-target="#modals-load-content"
|
|
data-id="{{ $value->id }}"
|
|
data-model="emailTemplate"
|
|
data-action="modal-email-template"
|
|
data-url=""
|
|
data-redirect="back"
|
|
data-route="{{ route('admin_settings_email_template_load') }}"><span class="fa fa-edit"></span></button>
|
|
</td>
|
|
<td>{{ $value->subject }}</td>
|
|
<td data-sort="{{ $value->active }}">{!! \App\Services\HTMLHelper::getActiveIcon($value->active) !!}</td>
|
|
<td><a class="text-danger" href="{{ route('admin_settings_email_template_delete', [$value->id]) }}" onclick="return confirm('{{__('Wirklich löschen?')}}');"><i class="fa fa-trash-alt"></i></a></td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
<div class="mt-4 col">
|
|
<button type="button" class="btn btn-sm btn-primary" data-toggle="modal"
|
|
data-target="#modals-load-content"
|
|
data-id="new"
|
|
data-model="emailTemplate"
|
|
data-action="modal-email-template"
|
|
data-url=""
|
|
data-redirect="back"
|
|
data-route="{{ route('admin_settings_email_template_load') }}"> Neue E-Mail Vorlage anlegen</button>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
$( document ).ready(function() {
|
|
$('.datatables-default').dataTable({
|
|
"bLengthChange": false,
|
|
"iDisplayLength": 50,
|
|
"order": [[ 0, "desc" ]],
|
|
"language": {
|
|
"url": "/js/German.json"
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</div>
|
|
@endsection |