{% extends 'blog/show_post.html' %} {% block title %} {% if comment is not none %} Edit comment #{{ comment.id }}" {% else %} Comment on "{{ post.title }}" {% endif %} {% endblock %} {% block add_comment %}
{{ form.hidden_tag() }}

{{ form.body.label }}
{{ form.body(cols=50, row=4) }}

{{ form.submit() }}

{% if comment is not none %}
{% endif %} {% endblock %}