2021-08-22 08:15:58 -04:00
|
|
|
@extends('layouts.simple')
|
2020-10-03 13:44:12 -04:00
|
|
|
|
|
|
|
@section('body')
|
|
|
|
<div class="container">
|
|
|
|
|
2022-03-26 17:36:05 -04:00
|
|
|
@include('settings.parts.navbar', ['selected' => 'maintenance'])
|
2020-10-03 13:44:12 -04:00
|
|
|
|
|
|
|
<div class="card content-wrap auto-height">
|
|
|
|
<h2 class="list-heading">{{ trans('settings.recycle_bin') }}</h2>
|
|
|
|
|
|
|
|
<div class="grid half left-focus">
|
|
|
|
<div>
|
|
|
|
<p class="text-muted">{{ trans('settings.recycle_bin_desc') }}</p>
|
|
|
|
</div>
|
|
|
|
<div class="text-right">
|
|
|
|
<div component="dropdown" class="dropdown-container">
|
|
|
|
<button refs="dropdown@toggle"
|
|
|
|
type="button"
|
|
|
|
class="button outline">{{ trans('settings.recycle_bin_empty') }} </button>
|
|
|
|
<div refs="dropdown@menu" class="dropdown-menu">
|
|
|
|
<p class="text-neg small px-m mb-xs">{{ trans('settings.recycle_bin_empty_confirm') }}</p>
|
|
|
|
|
|
|
|
<form action="{{ url('/settings/recycle-bin/empty') }}" method="POST">
|
|
|
|
{!! csrf_field() !!}
|
2022-04-20 09:03:47 -04:00
|
|
|
<button type="submit" class="text-primary small delete text-item">{{ trans('common.confirm') }}</button>
|
2020-10-03 13:44:12 -04:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<hr class="mt-l mb-s">
|
|
|
|
|
|
|
|
{!! $deletions->links() !!}
|
|
|
|
|
|
|
|
<table class="table">
|
|
|
|
<tr>
|
2021-04-17 04:39:56 -04:00
|
|
|
<th width="30%">{{ trans('settings.recycle_bin_deleted_item') }}</th>
|
|
|
|
<th width="20%">{{ trans('settings.recycle_bin_deleted_parent') }}</th>
|
2021-01-04 13:24:34 -05:00
|
|
|
<th width="20%">{{ trans('settings.recycle_bin_deleted_by') }}</th>
|
|
|
|
<th width="15%">{{ trans('settings.recycle_bin_deleted_at') }}</th>
|
|
|
|
<th width="15%"></th>
|
2020-10-03 13:44:12 -04:00
|
|
|
</tr>
|
|
|
|
@if(count($deletions) === 0)
|
|
|
|
<tr>
|
2021-06-26 07:12:11 -04:00
|
|
|
<td colspan="5">
|
2020-10-03 13:44:12 -04:00
|
|
|
<p class="text-muted"><em>{{ trans('settings.recycle_bin_contents_empty') }}</em></p>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endif
|
|
|
|
@foreach($deletions as $deletion)
|
|
|
|
<tr>
|
|
|
|
<td>
|
2020-11-02 17:47:48 -05:00
|
|
|
<div class="table-entity-item">
|
2020-10-03 13:44:12 -04:00
|
|
|
<span role="presentation" class="icon text-{{$deletion->deletable->getType()}}">@icon($deletion->deletable->getType())</span>
|
|
|
|
<div class="text-{{ $deletion->deletable->getType() }}">
|
|
|
|
{{ $deletion->deletable->name }}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-11-21 19:17:45 -05:00
|
|
|
@if($deletion->deletable instanceof \BookStack\Entities\Models\Book || $deletion->deletable instanceof \BookStack\Entities\Models\Chapter)
|
2020-11-02 17:47:48 -05:00
|
|
|
<div class="mb-m"></div>
|
|
|
|
@endif
|
2020-11-21 19:17:45 -05:00
|
|
|
@if($deletion->deletable instanceof \BookStack\Entities\Models\Book)
|
2020-10-03 13:44:12 -04:00
|
|
|
<div class="pl-xl block inline">
|
|
|
|
<div class="text-chapter">
|
|
|
|
@icon('chapter') {{ trans_choice('entities.x_chapters', $deletion->deletable->chapters()->withTrashed()->count()) }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
2020-11-21 19:17:45 -05:00
|
|
|
@if($deletion->deletable instanceof \BookStack\Entities\Models\Book || $deletion->deletable instanceof \BookStack\Entities\Models\Chapter)
|
2020-10-03 13:44:12 -04:00
|
|
|
<div class="pl-xl block inline">
|
|
|
|
<div class="text-page">
|
|
|
|
@icon('page') {{ trans_choice('entities.x_pages', $deletion->deletable->pages()->withTrashed()->count()) }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
</td>
|
2021-04-17 04:39:56 -04:00
|
|
|
<td>
|
|
|
|
@if($deletion->deletable->getParent())
|
|
|
|
<div class="table-entity-item">
|
|
|
|
<span role="presentation" class="icon text-{{$deletion->deletable->getParent()->getType()}}">@icon($deletion->deletable->getParent()->getType())</span>
|
|
|
|
<div class="text-{{ $deletion->deletable->getParent()->getType() }}">
|
|
|
|
{{ $deletion->deletable->getParent()->name }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
</td>
|
2021-08-22 08:15:58 -04:00
|
|
|
<td>@include('settings.parts.table-user', ['user' => $deletion->deleter, 'user_id' => $deletion->deleted_by])</td>
|
2020-11-02 17:47:48 -05:00
|
|
|
<td width="200">{{ $deletion->created_at }}</td>
|
|
|
|
<td width="150" class="text-right">
|
|
|
|
<div component="dropdown" class="dropdown-container">
|
|
|
|
<button type="button" refs="dropdown@toggle" class="button outline">{{ trans('common.actions') }}</button>
|
|
|
|
<ul refs="dropdown@menu" class="dropdown-menu">
|
2022-04-20 09:03:47 -04:00
|
|
|
<li><a class="text-item" href="{{ $deletion->getUrl('/restore') }}">{{ trans('settings.recycle_bin_restore') }}</a></li>
|
|
|
|
<li><a class="text-item" href="{{ $deletion->getUrl('/destroy') }}">{{ trans('settings.recycle_bin_permanently_delete') }}</a></li>
|
2020-11-02 17:47:48 -05:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</td>
|
2020-10-03 13:44:12 -04:00
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</table>
|
|
|
|
|
|
|
|
{!! $deletions->links() !!}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
@stop
|