{% extends 'base.html.twig' %} {% block title %}Topics publiés{% endblock %} {% block meta_description %} Liste de vos topics publiés {% endblock %} {% block body %}
bearded dwarf forging a sword above "SquadForge" title SQUADFORGE
{# Show menu Burger (mobile) #}
{# HeaderSouligne + Bandeau avertissement muted #} {% if app.user and app.user.muted and time_diff_future(app.user.endDateStatus) != false %}
Vous êtes actuellement réduit au silence ( fin dans {{ time_diff_future(app.user.endDateStatus) }} )
{% else %}
{% endif %}
{# Fil d'Ariane #}

Topics publiés ({{ userTopicsCount }})

{% set index = 0 %} {% for topic in userTopics %}
{{ topic.title|capitalize }}
{% if topic.validated == "validated" %} Validé {% elseif topic.validated == "refused" %} Refusé {% elseif topic.validated == "waiting" %} En attente {% endif %} {% if topic.topicPostsCount == 0 %} {{ topic.topicPostsCount }} {% else %} {{ topic.topicPostsCount }} {% endif %}

Êtes-vous sûr de vouloir supprimer ce topic ?
Tout les commentaires associés seront également supprimés

Supprimer Annuler
{% set index = index + 1 %} {% endfor %}
{% endblock %}