{% extends "base/base.html" %} {% import "widgets/editor.html" as widget_editor %} {% import "widgets/thread.html" as widget_thread %} {% import "widgets/user.html" as widget_user %} {% 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_thread.thread([t.thread.top_comment], None) }} {{ widget_pagination.paginate(comments, 'forum_topic', t, {'f': t.forum}) }} {{ widget_thread.thread(comments.items, t.thread.top_comment) }} {{ widget_pagination.paginate(comments, 'forum_topic', t, {'f': t.forum}) }} {% if outdated %}
Ce topic est sans activité depuis plus de {{ outdated }} jours, êtes-vous sûr de vouloir y poster ?
{% endif %} {% 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.attachments }} {% for error in form.attachments.errors %} {{ error }} {% endfor %}
{{ form.submit(class_='bg-ok') }}
{% endif %}
{% endblock %}