{% extends 'equipe/_layout.html.twig' %} {% block title %}Annonces{% endblock %} {% block page_title %}Annonces{% endblock %} {% block body %} {% if is_granted('ROLE_DIRECTION') %}

Publier une annonce

Décochez pour une consigne interne à l'équipe uniquement.
{% endif %}

Historique

{% if annonces is empty %}
Aucune annonce.
{% endif %}
{% for annonce in annonces %}

{{ annonce.titre }}

{% if annonce.visibleParents %} Visible parents {% else %} Interne uniquement {% endif %}
{{ annonce.dateHeure|date('d/m/Y H:i') }} - {{ annonce.auteur.prenom }} {{ annonce.auteur.nom }}
{{ annonce.contenu }}
{% endfor %}
{% if total > annonces|length %}
{% endif %}
{% endblock %} {% block javascripts_bottom %} {{ parent() }} {% endblock %}