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

{{ t.title }}

{% endblock %} {% block content %}

{{ t.title }}

{{ widget_member.profile(t.author ) }} {{ t.thread.top_comment.text }}
{% for c in comments.items %} {% if c != t.thread.top_comment %} {% endfor %}
{{ widget_member.profile(c.author ) }} {% if c.date_created != c.date_modified %} Le {{ c.date_created|date }} (Modifié le {{ c.date_modified|date }}) {% elif c.date_created == c.date_modified %} Le {{ c.date_created|date }} {% endif %}

{{ c.text }}

{% elif loop.index0 != 0 %}
Ce message est le top comment
{% endif %}

Commenter le sujet

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