{% 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 ! Les modifications ont bien été prises en compte.
{% endif %}

Catégories

{% if categories|length > 0 %} {% for category in categories %} {{ category.name }} {% endfor %} Toutes les catégories {% else %} Aucune catégorie {% endif %}
{% if products is defined and products|length > 0 %} {% for product in products %} {% endfor %} {% else %} {% endif %}
# Label Catégorie Prix Actions
{{ product.id }} {{ product.name }} {% if product.category is defined and product.category is not null %} {{ product.category.name }} {% else %} - {% endif %} {{ product.price | number_format(2, ',', ' ') }}
Aucun produit
ET/OU
{{ form_start(form) }}

{{ form_widget(form.content, {'attr': {'class': 'form-control'}}) }}
{{ form_end(form) }}
{% endblock %} {% block javascripts %} {% endblock %}