{% extends 'base.html.twig' %} {% block body %} {{ form_start(form) }}

{% if mode=="update" %} Modification JOB {% endif %}

{{ form_widget(form.submit) }} Annuler

{% if app.session.flashbag.has('error') %}
Erreur
{% for flashMessage in app.session.flashbag.get('error') %} {{ flashMessage }}
{% endfor %}
{% endif %} {% if app.session.flashbag.has('notice') %}
Information
{% for flashMessage in app.session.flashbag.get('notice') %} {{ flashMessage }}
{% endfor %}
{% endif %}
Informations
{{ form_row(form.command) }} {{ form_row(form.jsonargument) }} {{ form_row(form.statut) }} {{ form_row(form.repeatinterval) }} {{ form_row(form.nextexecdate) }}
{% if auditUse and mode=="update" and (access=="admin" or access=="modo" or access=="audit") %}
{{ render(path("app_"~access~"_audit_renderid",{entityname:"Cron",entityid:cron.id})) }}
{% endif %} {{ form_end(form) }} {% endblock %} {% block localjavascript %} $(document).ready(function() { $("#command").focus(); }); {% endblock %}