{% extends 'base_admin.html.twig' %} {% block title %}Détail de la manifestation{% endblock %} {% block body %}
Affiche :
Titre :
{{ manifestation.title }}
Dates :
{{ manifestation.startDate|date('d/m/Y') }} → {{ manifestation.endDate|date('d/m/Y') }}
Inscriptions :
{{ manifestation.registrationStart ? manifestation.registrationStart|date('d/m/Y') : '—' }}
→
{{ manifestation.registrationEnd ? manifestation.registrationEnd|date('d/m/Y') : '—' }}
Statuts :
{% if manifestation.isPublished %}{{ icon('valid', true) }} Publiée{% else %}{{ icon('invalid', true) }} Brouillon{% endif %}
{% if manifestation.isPaid %} | Payante{% endif %}
{% if manifestation.isTemplate %} | Modèle{% endif %}
{{ manifestation.description|default('Aucune description.') }}
Aucun document public pour cette manifestation.
{% endif %}{{ request.representant }}
📧 {{ request.mail }}
📞 {{ request.telephone }}
📅 Retour prévu le {{ request.dateRetour|date('d/m/Y') }}
Matériel demandé :
❌ Demande non envoyée à la mairie
{% endif %}Aucune demande de matériel enregistrée.
{% endif %}Formats acceptés : PDF, JPG, PNG, HEIC, HEIF, WEBP
Aucun document n’a encore été ajouté.
{% endif %}Nom technique | Label | Type | Obligatoire | Position | Actions |
---|---|---|---|---|---|
{{ field.name }} |
{{ field.label }} | {{ field.type }} | {{ field.required ? icon('valid', true) : icon('invalid', true) }} | {{ field.position }} |
{{ icon('edit', true) }}
|
Aucun champ personnalisé pour cette manifestation.
{% endif %}Nom | Image | Prix de base | Quantité max/utilisateur | Stock total | Vente | Actif | Actions |
---|---|---|---|---|---|---|---|
{{ product.title }} |
{% if product.picture %}
|
{{ product.price|number_format(2, ',', ' ') }} € | {{ product.maxQuantityPerUser ?? '—' }} | {{ product.totalAvailable ?? '—' }} | {{ product.saleStart ? product.saleStart|date('d/m/Y H:i') : '—' }} → {{ product.saleEnd ? product.saleEnd|date('d/m/Y H:i') : '—' }} | {{ product.enabled ? icon('valid', true) : icon('invalid', true) }} |
{{ icon('edit', true) }}
{{ icon('plus', true) }}
|
Aucun produit n’est encore associé à cette manifestation.
{% endif %}Nom | Produits | Montant | Date | Statut | Actions | |
---|---|---|---|---|---|---|
{% if registration.user %} {{ registration.user.fullname }} {% else %} {% set prenom = prenomField is defined ? prenomField.value : '' %} {% set nom = nomField is defined ? nomField.value : '' %} {{ prenom ~ ' ' ~ nom ?: '—' }} {% endif %} | {% if registration.user %} {{ registration.user.email }} {% else %} {{ emailField is defined and emailField.value ? emailField.value : '—' }} {% endif %} |
{% for product in registration.products %}
{{ product.product.title }} × {{ product.quantity }}
{% endfor %}
|
{{ registration.totalAmount|number_format(2, ',', ' ') }} € | {{ registration.createdAt|date('d/m/Y H:i') }} | {% if registration.isPaid %} Payé {% else %} Non payé {% endif %} | Voir |
Aucune inscription pour le moment.
{% endif %}