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

Déplacer un commentaire

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

Chercher un thread

{{ search_form.hidden_tag() }}
{{ search_form.name.label }} {{ search_form.name() }} {% for error in search_form.name.errors %} {{ error }} {% endfor %}
{{ search_form.search(class_='bg-ok') }}

Nouveau thread

{{ move_form.hidden_tag() }}
{{ move_form.thread.label }} {{ move_form.thread }} {% for error in move_form.thread.errors %} {{ error }} {% endfor %}
{{ move_form.submit(class_='bg-ok') }}
{% endblock %}