{% extends "base/base.html" %} {% import "widgets/editor.html" as widget_editor %} {% block title %} Forum de Planète Casio »

{{ t.forum.name }}

{% endblock %} {% block content %}

{{ t.title }}

{{ t.thread.top_comment.text }}
{% for i, c in enumerate(t.thread.comments) %} {% if c != t.thread.top_comment %}
{{ c.text }}
{% elif i != 0 %}
Ce message est le top comment
{% endif %} {% endfor %}

Commenter le sujet

{{ form.hidden_tag() }} {{ widget_editor.text_editor(form.message, label=False) }}
{{ form.submit(class_='bg-green') }}
{% endblock %}