{% extends "email/created_content.html" %} {% load i18n %} {% block subject %} {% with instance.owner.title as owner %} {% with instance.root_content.model_name as content_type%} {% blocktrans %}{{ owner }} commented a {{ content_type }}.{% endblocktrans %} {% endwith %} {% endwith %} {% endblock %} {% block content %}

{% blocktrans with instance.owner.title as owner and instance.root_content.owner.title as content_owner and instance.root_content.model_name as content_type %} {{ owner }} commented {{ content_owner }}'s content {% endblocktrans %}

{% with instance.owner.title as owner %} {% with instance.model_name as content_type %} {% with instance.title_or_description as title_or_description %} {% with instance.root_content.get_absolute_url as absolute_url %} {% with instance.root_content.title_or_description as content_title_or_description %}

{% blocktrans %}Hi,{% endblocktrans %}

{% blocktrans %} {{ owner }} commented on . {% endblocktrans %}

{% blocktrans %}{{ owner }} wrote:{% endblocktrans %}

{{ title_or_description }}

{% blocktrans %} To view this content and comment it, visit {{ content_title_or_description }}. {% endblocktrans %}

{% endwith %} {% endwith %} {% endwith %} {% endwith %} {% endwith %} {% endblock %}