{% comment %} Comments on a speaker plus the box to add one. Re-rendered on its own by SpeakerCommentView and SpeakerCommentDeleteView, so it has to stand alone. {% endcomment %}
Comments
{% for comment in comments %}
{{ comment.author_display }} · {{ comment.createdon|date:"M j, Y" }}
{{ comment.body }}
{% comment %}Mirrors SpeakerComment.can_be_deleted_by, which is what actually enforces this.{% endcomment %} {% if request.user == comment.user or request.user.is_superuser %} {% endif %}
{% empty %}

No comments yet.

{% endfor %}
{% csrf_token %} {{ comment_form.body }} {% if comment_form.body.errors %}
{{ comment_form.body.errors|striptags }}
{% endif %}