{% extends 'TVn7ForumBundle::layout.html.twig' %} {% from "TdbBaseBundle::macros.html.twig" import userChip %} {% block pageTitle %}Forum - {{ topic.subject }}{% endblock %} {% block menuSideActions %} {% if is_granted('create-topic', topic.forum) %} Nouveau sujet {% endif %} {% endblock menuSideActions %} {% block forumContent %}

{{ topic.subject }} {% if is_granted('reply', topic) %} {% endif %} {% if is_granted('edit',topic) %} {% endif %} {% if is_granted('delete',topic) %} {% endif %}

{% if topic.user != null %} {{ userChip(topic.user, 30) }} ( {% if topic.user.poste != "Aucun" %} {{ topic.user.poste }} {{ topic.user.annee - 2 }}/{{ topic.user.annee - 1 }} - {% endif %} Promo {{ topic.user.annee }} )   {% else %} Utilisateur supprimé {% endif %}   {{ topic.createDate|date('d/m/Y à H:i') }}

{{ topic.body | raw }}

{% if topic.editDate != "" %}

Dernière édition le {{ topic.editDate | date('d/m/Y à H:i') }} {% if topic.editBy != "" and topic.editBy != topic.user %} par {{ topic.editBy.nomComplet }} {% endif %}

{% endif %}
{% for reply in topic.unDeletedReplies %}

{% if reply.user != null %} {{ userChip(reply.user, 30) }} ( {% if reply.user.poste != "Aucun" %} {{ reply.user.poste }} {{ reply.user.annee - 2 }}/{{ reply.user.annee - 1 }} - {% endif %} Promo {{ reply.user.annee }} )   {% else %} Utilisateur supprimé {% endif %} {{ reply.createDate|date('d/m/Y à H:i') }} {% if is_granted('edit',reply) %} {% endif %} {% if is_granted('delete',reply) %} {% endif %}

{{ reply.body | raw }}

{% if reply.editDate != "" %}

Dernière édition le {{ reply.editDate | date('d/m/Y à H:i') }} {% if reply.editBy != "" and reply.editBy != reply.user %} par {{ reply.editBy.nomComplet }} {% endif %}

{% endif %}
{% endfor %} {% if is_granted('reply', topic) %}

Répondre au sujet

{% if newreplydetected %}
Une ou plusieurs réponses ont été postées pendant que vous écriviez votre réponse.
Cette dernière n'a pas été postée pour que vous puissiez éventuellement la modifier.
{% endif %} {{ form_start(form, {'attr': {'class': 'form-horizontal group-border-dashed', 'novalidate':''}}) }} {% include 'TVn7ForumBundle:Post:form.html.twig' with {'form': form, 'topic': topic} %} {% if lastreply is not null %} {% endif %} {{ form_end(form) }}
{% endif %} {% endblock %} {% block adminInformations %} {% if is_granted('ROLE_SUPER_ADMIN') %}

Nombre de vues ({{ topic.views }} vue(s) au total)

{% for viewer in topic.viewers %} {% endfor %}
Nom Année Poste
{{ viewer.nomComplet }} {{ viewer.annee }} {{ viewer.poste }}

Abonnés aux notifications

{% for subscriber in topic.subscribers %} {% endfor %}
Nom Année Poste Action
{{ subscriber.nomComplet }} {{ subscriber.annee }} {{ subscriber.poste }} Désabonner

Abonner une personne avec son login INP-net :


{% endif %} {% endblock %}