mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
1d43eda21f
* Small UI improvements for importer Signed-off-by: snipe <snipe@snipe.net> * And UI backup improvements Signed-off-by: snipe <snipe@snipe.net>
96 lines
3 KiB
PHP
96 lines
3 KiB
PHP
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
{{ trans('admin/settings/general.backups') }}
|
|
@parent
|
|
@stop
|
|
|
|
@section('header_right')
|
|
<a href="{{ route('settings.index') }}" class="btn btn-primary"> {{ trans('general.back') }}</a>
|
|
@stop
|
|
|
|
{{-- Page content --}}
|
|
@section('content')
|
|
|
|
|
|
<div class="row">
|
|
<div class="col-md-9">
|
|
<div class="box box-default">
|
|
<div class="box-body">
|
|
<div class="table-responsive">
|
|
<table
|
|
data-cookie="true"
|
|
data-cookie-id-table="system-backups"
|
|
data-pagination="true"
|
|
data-id-table="system-backups"
|
|
data-search="true"
|
|
data-side-pagination="client"
|
|
data-sort-order="asc"
|
|
id="system-backups"
|
|
class="table table-striped snipe-table">
|
|
<thead>
|
|
<thead>
|
|
<th>File</th>
|
|
<th>Created</th>
|
|
<th>Size</th>
|
|
<th><span class="sr-only">{{ trans('general.delete') }}</span></th>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($files as $file)
|
|
<tr>
|
|
<td>
|
|
<a href="{{ route('settings.backups.download', [$file['filename']]) }}">
|
|
{{ $file['filename'] }}
|
|
</a>
|
|
</td>
|
|
<td>{{ date("M d, Y g:i A", $file['modified']) }} </td>
|
|
<td>{{ $file['filesize'] }}</td>
|
|
<td>
|
|
|
|
@can('superadmin')
|
|
<a data-html="false"
|
|
class="btn delete-asset btn-danger btn-sm {{ (config('app.lock_passwords')) ? ' disabled': '' }}" data-toggle="modal" href=" {{ route('settings.backups.destroy', $file['filename']) }}" data-content="{{ trans('admin/settings/message.backup.delete_confirm') }}" data-title="{{ trans('general.delete') }} {{ htmlspecialchars($file['filename']) }} ?" onClick="return false;">
|
|
<i class="fa fa-trash icon-white" aria-hidden="true"></i>
|
|
<span class="sr-only">{{ trans('general.delete') }}</span>
|
|
</a>
|
|
@endcan
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- side address column -->
|
|
<div class="col-md-3">
|
|
|
|
<form method="POST">
|
|
{{ Form::hidden('_token', csrf_token()) }}
|
|
|
|
<p>
|
|
<button class="btn btn-primary {{ (config('app.lock_passwords')) ? ' disabled': '' }}">{{ trans('admin/settings/general.generate_backup') }}</button>
|
|
</p>
|
|
|
|
@if (config('app.lock_passwords'))
|
|
<p class="text-warning"><i class="fa fa-lock"></i> {{ trans('general.feature_disabled') }}</p>
|
|
@endif
|
|
|
|
|
|
</form>
|
|
<p>Backup files are located in: {{ $path }}</p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
@stop
|
|
|
|
@section('moar_scripts')
|
|
@include ('partials.bootstrap-table')
|
|
@stop
|
|
|