66 lines
1.8 KiB
Twig
Executable File
66 lines
1.8 KiB
Twig
Executable File
|
|
{% extends 'base.html.twig' %}
|
|
|
|
{% block body %}
|
|
{{ form_start(form) }}
|
|
<h1 class="page-header">
|
|
{% if mode=="update" %}
|
|
Modification JOB
|
|
{% endif %}
|
|
</h1>
|
|
|
|
{{ form_widget(form.submit) }}
|
|
|
|
<a class="btn btn-secondary" href={{ path('app_admin_cron') }}>Annuler</a>
|
|
|
|
<br><br>
|
|
|
|
{% if app.session.flashbag.has('error') %}
|
|
<div class='alert alert-danger' style='margin: 5px 0px'>
|
|
<strong>Erreur</strong><br>
|
|
{% for flashMessage in app.session.flashbag.get('error') %}
|
|
{{ flashMessage }}<br>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if app.session.flashbag.has('notice') %}
|
|
<div class='alert alert-info' style='margin: 5px 0px'>
|
|
<strong>Information</strong><br>
|
|
{% for flashMessage in app.session.flashbag.get('notice') %}
|
|
{{ flashMessage }}<br>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<i class="fa fa-pencil-alt fa-fw"></i> Informations
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
{{ form_row(form.command) }}
|
|
{{ form_row(form.jsonargument) }}
|
|
{{ form_row(form.statut) }}
|
|
{{ form_row(form.repeatinterval) }}
|
|
{{ form_row(form.nextexecdate) }}
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{% if auditUse and mode=="update" and (access=="admin" or access=="modo" or access=="audit") %}
|
|
<div class="float-end" style="width:700px;max-width:100%">
|
|
{{ render(path("app_"~access~"_audit_renderid",{entityname:"Cron",entityid:cron.id})) }}
|
|
</div>
|
|
{% endif %}
|
|
{{ form_end(form) }}
|
|
{% endblock %}
|
|
|
|
{% block localjavascript %}
|
|
$(document).ready(function() {
|
|
$("#command").focus();
|
|
});
|
|
{% endblock %}
|
|
|
|
|
|
|