2017-09-10 21:12:57 +01:00
|
|
|
@extends(Theme::viewName('layout'))
|
2016-09-01 16:23:39 +01:00
|
|
|
@section('title', 'Gallery Admin')
|
|
|
|
|
2016-09-09 15:06:34 +01:00
|
|
|
@section('breadcrumb')
|
2017-03-27 14:04:09 +01:00
|
|
|
<li class="breadcrumb-item"><a href="{{ route('home') }}"><i class="fa fa-fw fa-home"></i></a></li>
|
|
|
|
<li class="breadcrumb-item"><a href="{{ route('admin') }}">@lang('navigation.breadcrumb.admin')</a></li>
|
|
|
|
<li class="breadcrumb-item active">@lang('navigation.breadcrumb.albums')</li>
|
2016-09-09 15:06:34 +01:00
|
|
|
@endsection
|
|
|
|
|
2016-09-01 16:23:39 +01:00
|
|
|
@section('content')
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2017-03-27 14:04:09 +01:00
|
|
|
<div class="col">
|
2017-02-13 10:36:53 +00:00
|
|
|
<h1>@lang('admin.list_albums_title')</h1>
|
|
|
|
<div class="alert alert-info" style="margin-bottom: 30px;">
|
2017-03-27 14:04:09 +01:00
|
|
|
<i class="fa fa-fw fa-info"></i> @lang('admin.list_albums_intro')
|
2017-02-13 10:36:53 +00:00
|
|
|
</div>
|
|
|
|
|
2016-09-01 17:17:55 +01:00
|
|
|
@if (count($albums) == 0)
|
|
|
|
<div class="text-center">
|
2016-09-06 19:47:25 +01:00
|
|
|
<h4 class="text-danger"><b>@lang('admin.no_albums_title')</b></h4>
|
2016-09-01 17:17:55 +01:00
|
|
|
<p>@lang('admin.no_albums_text')</p>
|
|
|
|
<p style="margin-top: 40px;">
|
2017-02-15 09:14:52 +00:00
|
|
|
<a href="{{ route('albums.create') }}" class="btn btn-lg btn-success"><i class="fa fa-fw fa-plus"></i> @lang('admin.create_album')</a>
|
2016-09-01 17:17:55 +01:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
@else
|
|
|
|
<table class="table table-hover table-striped">
|
|
|
|
<tbody>
|
|
|
|
@foreach ($albums as $album)
|
2017-04-17 17:11:59 +01:00
|
|
|
@include (Theme::viewName('partials.single_album_admin'), ['is_child' => false])
|
2016-09-01 17:17:55 +01:00
|
|
|
@endforeach
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2016-09-01 17:31:16 +01:00
|
|
|
|
2016-09-07 21:44:28 +01:00
|
|
|
<div class="text-center">
|
|
|
|
{{ $albums->links() }}
|
|
|
|
</div>
|
|
|
|
|
2016-09-09 16:59:13 +01:00
|
|
|
<div class="pull-right" style="margin-top: 10px;">
|
|
|
|
<a href="{{ route('albums.create') }}" class="btn btn-success"><i class="fa fa-fw fa-plus"></i> @lang('admin.actions_widget.create_album_link')</a>
|
2016-09-01 17:31:16 +01:00
|
|
|
</div>
|
2016-09-01 17:17:55 +01:00
|
|
|
@endif
|
2016-09-01 16:23:39 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-04-17 17:11:59 +01:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@push('scripts')
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function() {
|
|
|
|
$('.album-expand-handle').click(function() {
|
|
|
|
var parent = $(this).closest('tr');
|
|
|
|
|
|
|
|
var handle = $('.album-expand-handle', parent);
|
|
|
|
var albumID = parent.data('album-id');
|
|
|
|
$('tr[data-parent-album-id=' + albumID + ']').toggle();
|
|
|
|
|
|
|
|
if (handle.hasClass('fa-plus'))
|
|
|
|
{
|
|
|
|
handle.addClass('fa-minus');
|
|
|
|
handle.removeClass('fa-plus');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Toggle all children
|
|
|
|
$('tr[data-parent-album-id=' + albumID + ']').each(function(index, element)
|
|
|
|
{
|
|
|
|
var childHandle = $('.album-expand-handle', element);
|
|
|
|
if (childHandle.hasClass('fa-minus'))
|
|
|
|
{
|
|
|
|
childHandle.click();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
handle.addClass('fa-plus');
|
|
|
|
handle.removeClass('fa-minus');
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
@endpush
|