{% extends "base.html" %} {% block title %}{{ thread.title }}{% endblock %} {% block content %}

{{ thread.title }}

Créé le {{ thread.timestamp.strftime('%d/%m/%Y %H:%M:%S') }}

{% for msg in messages %}
{% if not msg.removed %}

{{ msg.content | safe }}

Posté le {{ msg.timestamp.strftime('%d/%m/%Y %H:%M:%S') }} - Votes: {{ msg.vote_count }}
{% else %}

Message supprimé par modération.

{% endif %}
{% else %}

Aucun message pour ce fil.

{% endfor %}

Répondre

{% endblock %}