Travel Guide Frontend Backend
This commit is contained in:
parent
e6cc042aee
commit
0857a34766
681 changed files with 6680 additions and 1689 deletions
|
|
@ -5,6 +5,14 @@
|
|||
.alert ul {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.note-video-clip {
|
||||
max-width: 100%;
|
||||
width: 600px;
|
||||
left: 0;
|
||||
right:0;
|
||||
margin:auto;
|
||||
|
||||
}
|
||||
</style>
|
||||
@if ($errors->any())
|
||||
<div class="row">
|
||||
|
|
@ -36,6 +44,8 @@
|
|||
<!-- draft -->
|
||||
<div class="card mb-2">
|
||||
<div class="card-body">
|
||||
<h4 class="mb-0 bg-light p-1">Inhalte</h4>
|
||||
<hr class="mt-0">
|
||||
<div class="form-row">
|
||||
<div class="form-group col-12">
|
||||
|
||||
|
|
@ -67,7 +77,7 @@
|
|||
<a class="btn btn-default btn-xs" href="?clean=true">Clean Text off</a>
|
||||
@endif
|
||||
<br clear="all">
|
||||
{{ Form::textarea('full_text', $travel_guide->full_text , ['class' => 'form-control summernote']) }}
|
||||
{{ Form::textarea('full_text', $travel_guide->full_text , ['class' => 'form-control summernote', 'style'=>'height:600px']) }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-row">
|
||||
|
|
@ -84,7 +94,8 @@
|
|||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<h4 class="mb-0 bg-light p-1">Tree / Navigation</h4>
|
||||
<hr class="mt-0">
|
||||
|
||||
<button type="button" class="btn btn-primary btn-sm float-right mb-2" data-toggle="modal" data-target="#modals-load-content"
|
||||
data-id="add"
|
||||
|
|
@ -100,6 +111,7 @@
|
|||
<th style="max-width: 60px;"> </th>
|
||||
<th>{{__('Name')}}</th>
|
||||
<th>{{__('url')}}</th>
|
||||
<th>{{__('Zuordnung')}}</th>
|
||||
<th>{{__('sichtbar')}}</th>
|
||||
<th>#</th>
|
||||
</tr>
|
||||
|
|
@ -109,7 +121,7 @@
|
|||
<tr>
|
||||
<td style="width: 5%;">
|
||||
<a href="{{ route('iq_content_tree_detail', [$iq_content_site->iq_content_tree_node->tree_id, $iq_content_site->iq_content_tree_node->id]) }}" class="btn icon-btn btn-sm btn-primary">
|
||||
<span class="fa fa-edit"></span>
|
||||
<span class="fa fa-share"></span>
|
||||
</a>
|
||||
</td>
|
||||
<td>{{$iq_content_site->iq_content_tree_node->name}}</td>
|
||||
|
|
@ -118,14 +130,11 @@
|
|||
</a> {{$iq_content_site->iq_content_tree_node->getUri()}}
|
||||
</td>
|
||||
<td>
|
||||
@if($iq_content_site->iq_content_tree_node->active)
|
||||
<span class="badge badge-pill badge-success"><i class="fa fa-check"></i></span>
|
||||
@else
|
||||
<span class="badge badge-pill badge-danger"><i class="fa fa-times"></i></span>
|
||||
@endif
|
||||
{{$iq_content_site->getTravelType()}}
|
||||
</td>
|
||||
<td>{!! get_active_badge($iq_content_site->iq_content_tree_node->active) !!}</td>
|
||||
<td>
|
||||
<a class="text-danger" href="{{ route('iq_content_tree_detail_remove_site', [$iq_content_site->iq_content_tree_node->tree_id, $iq_content_site->tree_node_id, $iq_content_site->travel_guide->id, 'g']) }}" onclick="return confirm('{{__('Seite aus Tree entfernen?')}}');"><i class="fa fa-reply"></i></a>
|
||||
<a class="text-danger" href="{{ route('iq_content_tree_detail_remove', ['guide', $iq_content_site->iq_content_tree_node->tree_id, $iq_content_site->tree_node_id, $iq_content_site->travel_guide->id, 'guide']) }}" onclick="return confirm('{{__('Seite aus Tree entfernen?')}}');"><i class="fa fa-reply"></i></a>
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
|
|
@ -134,6 +143,8 @@
|
|||
<hr>
|
||||
@endif
|
||||
|
||||
<h4 class="mb-0 bg-light p-1">Meta</h4>
|
||||
<hr class="mt-0">
|
||||
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-12">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue