{% extends 'base.html.twig' %} {% block body %}

Gestion des Annonces

Ajouter une Annonce Ajouter une Catégorie

En Attente Publication

    {% for alert in alerts %} {% if alert.isPending %}
    {% if alert.alertcategory.icon %} {% else %} {% endif %} {{ alert.title }}
    {{ alert.content|raw }}
    {% endif %} {% endfor %}

En Ligne

    {% for alert in alerts %} {% if alert.isOnline %}
    {% if alert.alertcategory.icon %} {% else %} {% endif %} {{ alert.title }}
    {{ alert.content|raw }}
    {% endif %} {% endfor %}

Archivées

    {% for alert in alerts %} {% if alert.isArchived %}
    {% if alert.alertcategory.icon %} {% else %} {% endif %} {{ alert.title }}
    {{ alert.content|raw }}
    {% endif %} {% endfor %}
Afficher par Catégorie
{% for alertcategory in alertcategorys %} {% endfor %}
Afficher par Groupes
{% endblock %} {% block localscript %} {% endblock %}