{% extends 'menu/navigation_admin.html.twig' %} {% set side_nav = 'commandes' %} {% block content %}

{% if mode == "edition" %} Édition {% else %} Création {% endif %} d'une commande

{% if mode == "edition" %} Éditer {% else %} Entrer {% endif %} les informations de la commande

{{ form_start(form, { 'attr': { 'class': 'm-form m-form--label-align-left- m-form--state-', 'id': 'm_form', 'autocomplete' : 'off' }}) }}
{{ form_label(form.price) }} {{ form_widget(form.price) }}
{{ form_label(form.info) }} {{ form_widget(form.info) }}
{{ form_label(form.statut) }} {{ form_widget(form.statut) }}
{{ form_label(form.client) }} {{ form_widget(form.client) }}
{% if mode == "edition" %} {% endif %}
{{ form_end(form) }}
{% endblock %} {% block javascripts %} {{ encore_entry_script_tags('listManagers') }} {% endblock %}