2017-09-26 02:43:01 +00:00
|
|
|
{{-- Pterodactyl - Panel --}}
|
2017-01-24 22:57:08 +00:00
|
|
|
{{-- Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com> --}}
|
2017-01-21 20:40:46 +00:00
|
|
|
|
2017-09-26 02:43:01 +00:00
|
|
|
{{-- This software is licensed under the terms of the MIT license. --}}
|
|
|
|
{{-- https://opensource.org/licenses/MIT --}}
|
2017-01-21 20:40:46 +00:00
|
|
|
@extends('layouts.master')
|
|
|
|
|
|
|
|
@section('title')
|
2018-01-09 03:43:10 +00:00
|
|
|
@lang('server.schedule.header')
|
2017-01-21 20:40:46 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('content-header')
|
2017-09-14 02:46:43 +00:00
|
|
|
<h1>@lang('server.schedule.header')<small>@lang('server.schedule.header_sub')</small></h1>
|
2017-01-21 20:40:46 +00:00
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li><a href="{{ route('index') }}">@lang('strings.home')</a></li>
|
|
|
|
<li><a href="{{ route('server.index', $server->uuidShort) }}">{{ $server->name }}</a></li>
|
2017-09-14 02:46:43 +00:00
|
|
|
<li class="active">@lang('navigation.server.schedules')</li>
|
2017-01-21 20:40:46 +00:00
|
|
|
</ol>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-12">
|
|
|
|
<div class="box">
|
|
|
|
<div class="box-header with-border">
|
2017-09-14 02:46:43 +00:00
|
|
|
<h3 class="box-title">@lang('server.schedule.current')</h3>
|
2017-03-18 20:36:46 +00:00
|
|
|
<div class="box-tools">
|
2017-09-14 02:46:43 +00:00
|
|
|
<a href="{{ route('server.schedules.new', $server->uuidShort) }}"><button class="btn btn-primary btn-sm">Create New</button></a>
|
2017-03-18 20:36:46 +00:00
|
|
|
</div>
|
2017-01-21 20:40:46 +00:00
|
|
|
</div>
|
|
|
|
<div class="box-body table-responsive no-padding">
|
|
|
|
<table class="table table-hover">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2017-09-10 04:55:21 +00:00
|
|
|
<th>@lang('strings.name')</th>
|
|
|
|
<th class="text-center">@lang('strings.queued')</th>
|
2017-09-13 04:45:19 +00:00
|
|
|
<th class="text-center">@lang('strings.tasks')</th>
|
2017-01-21 20:40:46 +00:00
|
|
|
<th>@lang('strings.last_run')</th>
|
|
|
|
<th>@lang('strings.next_run')</th>
|
|
|
|
<th></th>
|
|
|
|
</tr>
|
2017-09-13 04:45:19 +00:00
|
|
|
@foreach($schedules as $schedule)
|
|
|
|
<tr @if(! $schedule->is_active)class="muted muted-hover"@endif>
|
2017-01-21 20:40:46 +00:00
|
|
|
<td class="middle">
|
2017-09-13 04:45:19 +00:00
|
|
|
@can('edit-schedule', $server)
|
2018-02-24 18:04:14 +00:00
|
|
|
<a href="{{ route('server.schedules.view', ['server' => $server->uuidShort, '$schedule' => $schedule->hashid]) }}">
|
|
|
|
{{ $schedule->name ?? trans('server.schedule.unnamed') }}
|
|
|
|
</a>
|
2017-09-10 04:55:21 +00:00
|
|
|
@else
|
2017-09-14 02:46:43 +00:00
|
|
|
{{ $schedule->name ?? trans('server.schedule.unnamed') }}
|
2017-09-10 04:55:21 +00:00
|
|
|
@endcan
|
|
|
|
</td>
|
|
|
|
<td class="middle text-center">
|
2017-09-13 04:45:19 +00:00
|
|
|
@if ($schedule->is_processing)
|
2017-01-21 20:40:46 +00:00
|
|
|
<span class="label label-success">@lang('strings.yes')</span>
|
|
|
|
@else
|
|
|
|
<span class="label label-default">@lang('strings.no')</span>
|
|
|
|
@endif
|
|
|
|
</td>
|
2017-09-13 04:45:19 +00:00
|
|
|
<td class="middle text-center"><span class="label label-primary">{{ $schedule->tasks_count }}</span></td>
|
2017-04-17 16:03:11 +00:00
|
|
|
<td class="middle">
|
2017-09-13 04:45:19 +00:00
|
|
|
@if($schedule->last_run_at)
|
|
|
|
{{ Carbon::parse($schedule->last_run_at)->toDayDateTimeString() }}<br /><span class="text-muted small">({{ Carbon::parse($schedule->last_run_at)->diffForHumans() }})</span>
|
2017-09-10 04:55:21 +00:00
|
|
|
@else
|
|
|
|
<em class="text-muted">@lang('strings.not_run_yet')</em>
|
2017-04-17 16:03:11 +00:00
|
|
|
@endif
|
|
|
|
</td>
|
2017-01-21 20:40:46 +00:00
|
|
|
<td class="middle">
|
2017-09-13 04:45:19 +00:00
|
|
|
@if($schedule->is_active)
|
2018-01-09 03:43:10 +00:00
|
|
|
{{ Carbon::parse($schedule->next_run_at)->toDayDateTimeString() }}<br /><span class="text-muted small">({{ Carbon::parse($schedule->next_run_at)->diffForHumans() }})</span>
|
2017-01-21 20:40:46 +00:00
|
|
|
@else
|
|
|
|
<em>n/a</em>
|
|
|
|
@endif
|
|
|
|
</td>
|
2018-01-09 03:43:10 +00:00
|
|
|
<td class="middle">
|
|
|
|
@can('delete-schedule', $server)
|
|
|
|
<a class="btn btn-xs btn-danger" href="#" data-action="delete-schedule" data-schedule-id="{{ $schedule->hashid }}" data-toggle="tooltip" data-placement="top" title="@lang('strings.delete')"><i class="fa fa-fw fa-trash-o"></i></a>
|
|
|
|
@endcan
|
|
|
|
@can('toggle-schedule', $server)
|
|
|
|
<a class="btn btn-xs btn-default" href="#" data-action="toggle-schedule" data-active="{{ $schedule->active }}" data-schedule-id="{{ $schedule->hashid }}" data-toggle="tooltip" data-placement="top" title="@lang('server.schedule.toggle')"><i class="fa fa-fw fa-eye-slash"></i></a>
|
|
|
|
<a class="btn btn-xs btn-default" href="#" data-action="trigger-schedule" data-schedule-id="{{ $schedule->hashid }}" data-toggle="tooltip" data-placement="top" title="@lang('server.schedule.run_now')"><i class="fa fa-fw fa-refresh"></i></a>
|
|
|
|
@endcan
|
|
|
|
</td>
|
2017-01-21 20:40:46 +00:00
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('footer-scripts')
|
|
|
|
@parent
|
|
|
|
{!! Theme::js('js/frontend/server.socket.js') !!}
|
2017-09-13 04:45:19 +00:00
|
|
|
{!! Theme::js('js/frontend/tasks/management-actions.js') !!}
|
2017-01-21 20:40:46 +00:00
|
|
|
@endsection
|