{% 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 | md }}

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, autofocus=True) }}
Supprimer des pièces jointes
{% for id, a in form.attachment_list.items() %} {{ form[id]() }} {{ a.name }} ({{ a.size }} octets)
{% endfor %}
{{ form.attachments.label }}
{{ form.attachments }} {% for error in form.attachments.errors %} {{ error }} {% endfor %}
{{ form.submit(class_='bg-ok') }}
{% endblock %}