{% extends 'admin/base.html.twig' %} {% block title %}Page Tarifs{% endblock %} {% block description %}Représente les tarifs à afficher sur votre site de votre site{% endblock %} {% block stylesheets %} {% endblock %} {% block body %} {% if success %}
Parfait ! Votre page Devis à bien été mise à jour.
{% endif %}

{{ form_label(form.name) }} {{ form_widget(form.name, {'attr': {'class': 'form-control'}}) }}
{{ form_label(form.description) }} {{ form_widget(form.description, {'attr': {'class': 'form-control'}}) }}
{{ form_label(form.displayOrder) }} {{ form_widget(form.displayOrder, {'attr': {'class': 'form-control'}}) }}
{{ form_label(form.active) }} {{ form_widget(form.active, {'attr': {'class': 'form-control'}}) }}
{{ form_end(form) }}
{% endblock %}