{% extends "layouts/base.html" %} {% load static %} {% block title %}Accueil - {{ site_config.name|default:"Golden Night Awards" }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Célébrons l'Excellence Universitaire

Découvrez les nommés et faites entendre votre voix pour les leaders de demain.

{% if events %}
{% for event in events %} {% if now < event.date_debut %} {% with status="upcoming" %} {# Carte événement (upcoming) #}
{% if event.logo %} {{ event.titre }} {% else %}
{{ event.titre|slice:":1"|upper }}
{% endif %}

{{ event.titre }}

{{ event.description|truncatewords:25|default:"Un événement prestigieux célébrant les talents exceptionnels." }}

Ouverture :
Clôture :
BIENTÔT DISPONIBLE
{% endwith %} {% elif now <= event.date_fin %} {% with status="open" %}
{% if event.logo %} {{ event.titre }} {% else %}
{{ event.titre|slice:":1"|upper }}
{% endif %}

{{ event.titre }}

{{ event.description|truncatewords:25|default:"Un événement prestigieux célébrant les talents exceptionnels." }}

Ouverture :
Clôture :
SÉANCE DE VOTE OUVERTE
{% endwith %} {% else %} {% with status="closed" %}
{% if event.logo %} {{ event.titre }} {% else %}
{{ event.titre|slice:":1"|upper }}
{% endif %}

{{ event.titre }}

{{ event.description|truncatewords:25|default:"Un événement prestigieux célébrant les talents exceptionnels." }}

Ouverture :
Clôture :
RÉSULTATS DISPONIBLES
{% endwith %} {% endif %} {% endfor %}
{% else %}
🎭

Le rideau est levé

Mais aucun scrutin n'est ouvert pour l'instant.
Revenez bientôt pour célébrer l'excellence.

{% endif %}
{% endblock content %}