mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
d7557befe2
- Also updated link to not leak referrer info
50 lines
2.0 KiB
PHP
50 lines
2.0 KiB
PHP
@extends('simple-layout')
|
|
|
|
@section('body')
|
|
<div class="container small">
|
|
|
|
<div class="grid left-focus v-center no-row-gap">
|
|
<div class="py-m">
|
|
@include('settings.navbar', ['selected' => 'maintenance'])
|
|
</div>
|
|
<div class="text-right p-m">
|
|
<a target="_blank" rel="noopener noreferrer" href="https://github.com/BookStackApp/BookStack/releases">
|
|
BookStack @if(strpos($version, 'v') !== 0) version @endif {{ $version }}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div id="image-cleanup" class="card content-wrap auto-height">
|
|
<h2 class="list-heading">{{ trans('settings.maint_image_cleanup') }}</h2>
|
|
<div class="grid half gap-xl">
|
|
<div>
|
|
<p class="small text-muted">{{ trans('settings.maint_image_cleanup_desc') }}</p>
|
|
</div>
|
|
<div>
|
|
<form method="POST" action="{{ url('/settings/maintenance/cleanup-images') }}">
|
|
{!! csrf_field() !!}
|
|
<input type="hidden" name="_method" value="DELETE">
|
|
<div>
|
|
@if(session()->has('cleanup-images-warning'))
|
|
<p class="text-neg">
|
|
{{ session()->get('cleanup-images-warning') }}
|
|
</p>
|
|
<input type="hidden" name="ignore_revisions" value="{{ session()->getOldInput('ignore_revisions', 'false') }}">
|
|
<input type="hidden" name="confirm" value="true">
|
|
@else
|
|
<label>
|
|
<input type="checkbox" name="ignore_revisions" value="true">
|
|
{{ trans('settings.maint_image_cleanup_ignore_revisions') }}
|
|
</label>
|
|
@endif
|
|
</div>
|
|
<button class="button outline">{{ trans('settings.maint_image_cleanup_run') }}</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
@stop
|