{% extends "base/base.html" %} {% import "widgets/editor.html" as widget_editor %} {% import "widgets/member.html" as widget_member %} {% import "widgets/pagination.html" as widget_pagination with context %} {% 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 }}
{{ widget_pagination.paginate(comments, 'forum_topic', {'f': t.forum, 't':t}) }} {% for c in comments.items %} {% if c != t.thread.top_comment %} {% endfor %}
{{ widget_member.profile(c.author ) }}
{% if c.date_created != c.date_modified %} Posté le {{ c.date_created|date }} (Modifié le {{ c.date_modified|date }}) {% else %} Posté le {{ c.date_created|date }} {% endif %} | # | Modifier | Supprimer

{{ c.text }}

{% elif loop.index0 != 0 %}
Ce message est le top comment
{% endif %}
{{ widget_pagination.paginate(comments, 'forum_topic', {'f': t.forum, 't':t}) }}

Commenter le sujet

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