{% extends 'admin/layout.html.twig' %} {% import 'admin/_macros.html.twig' as m %} {% block title %}Concours{% endblock %} {% block main %}

Concours

+ Ajouter un concours
{% for c in concours %} {% else %} {% endfor %}
Date Titre Amateur Club PDF Publié
{{ c.date|date('d/m/Y') }} {% if c.isUpcoming() %} À venir {% endif %} {{ c.titre }} {{ c.titre }} {{ c.numeroAmateur ?: '—' }} {{ c.numeroSif ?: '—' }} {% if c.horairePdf %} {% else %}—{% endif %} {{ c.isPublished ? '✓' : '✗' }}
{{ m.btn_edit(path('admin_concours_edit', {id: c.id})) }} {{ m.btn_del(path('admin_concours_delete', {id: c.id}), 'del-concours-' ~ c.id, 'Supprimer ce concours ?') }}
Aucun concours
{% endblock %}