{% 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', t, {'f': t.forum}) }} {% for c in comments.items %} {% if c != t.thread.top_comment %} {% if c.author.type == "member" %} {% else %} {% endif %} {% endfor %}
{{ widget_member.profile(c.author ) }}Invité{{ c.author.name }}
{% 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', t, {'f': t.forum}) }} {% if current_user.is_authenticated or V5Config.ENABLE_GUEST_POST %}

Commenter le sujet

{{ form.hidden_tag() }} {% if form.pseudo %} {{ form.pseudo.label }} {{ form.pseudo }} {% for error in form.pseudo.errors %} {{ error }} {% endfor %} {% endif %} {{ widget_editor.text_editor(form.message, label=False) }}
{{ form.submit(class_='bg-ok') }}
{% endif %}
{% endblock %}