{% extends "comments/base.html" %} {% load i18n %} {% load comments %} {% load comments_ink %} {% block title %}{% trans "Comment reply" %}{% endblock %} {% block content %}

{% trans "Reply to comment" %}

{% trans "Comment sent to:" %}
{{ form.target_object }}
{% get_user_avatar_or_gravatar comment.user_email "36,identicon" %}
{% if comment.url and not comment.is_removed %}{{ comment.name }}{% else %}{{ comment.name }}{% endif %} ⋅ {{ comment.submit_date }}  
{{ comment.comment|linebreaks|escape }}
{% include "comments/form.html" %}
{% endblock %}