{% load i18n %} {% load comments_tree %}
{% csrf_token %}
{% for field in form %} {% if field.is_hidden %}
{{ field }}
{% endif %} {% endfor %}
{{ form.honeypot }}
{{ form.comment }}
{% if not request.user.is_authenticated or not request.user.get_full_name %}
{{ form.name }}
{% endif %} {% if not request.user.is_authenticated or not request.user.email %}
{{ form.email }} {{ form.email.help_text }}
{% endif %} {% if not request.user.is_authenticated %}
{{ form.url }}
{% endif %}
{{ form.followup }}