{% extends 'comment/email/base.html' %} {% comment %}Inspired from Daniel Rus Morales's django-comments-xtd: * https://github.com/danirus/django-comments-xtd{% endcomment %} {% comment %}Email template is used from: * https://github.com/leemunroe/responsive-html-email-template{% endcomment %} {% load i18n %} {% block content %}

{% trans "Hey there," %}

{% trans "You or someone on your behalf have requested to post a comment into this page:" %}
http://{{ site.domain }}{{ comment.content_object.get_absolute_url }} {% blocktrans with posted_time=comment.posted %}at {{ posted_time }}.{% endblocktrans %}

{% trans "The comment:" %}

{{ comment.content }}



{% trans "If you do not wish to post the comment, please ignore this message or report an incident to" %} {{ contact }}. {% trans "Otherwise click on the button below to confirm the comment." %}


{% trans "If clicking does not work, you can also copy the below link and paste the address into your browser's address window" %}.

http://{{ site.domain }}{{ confirmation_url|slice:":40" }}...


{% trans "Thanks for your comment!" %}

------

{% trans "Kind regards," %}
{{ site }}

{% endblock content %} {% block footer %} {% endblock footer %}