{% extends "base/base.html" %} {% import "widgets/editor.html" as widget_editor %} {% import "widgets/user.html" as widget_user %} {% block title %} Forum de Planète Casio » Édition de commentaire {% endblock %} {% block content %}

Édition de commentaire

Commentaire actuel

{{ widget_user.profile(comment.author) }}
{{ comment.text }}

Nouveau commentaire

{{ 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.preview(class_='bg-ok') }}
{{ form.submit(class_='bg-ok') }}
{% endblock %}