{% extends 'base.html.twig' %} {% block title %}Selling{% endblock %} {% block body %}

Selling

Id {{ selling.id }}
Note {{ selling.note }}
Sum {{ selling.sum }} €
Reduction {{ selling.reduction }} €
Date {{ selling.date ? selling.date|date('Y-m-d H:i:s') : '' }}
Comment {{ selling.note }}
Festival {% if selling.festival %} {{ selling.festival.name }}, {{ selling.festival.dateStart|date('d/m/Y') }} - {{ selling.festival.dateEnd|date('d/m/Y') }} {% else %} Aucun festival associé {% endif %}
Products
back to list edit {% if is_granted('ROLE_ADMIN') %} {{ include('selling/_delete_form.html.twig') }} {% endif %} {% endblock %}