{# {% extends "email/basemail.txt" %} #}
{% load i18n %}
{% with instance.owner.title as owner %}{% with instance.model_name as content_type%}
{% with instance.title_or_description as title %}{% with instance.get_absolute_url as absolute_url %}
Subject: {% blocktrans %}{{ owner }} published {{ content_type }}.{% endblocktrans %}

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

{% blocktrans %}
    {{ owner }} published a new {{ content_type }}:
{% endblocktrans %}

    {{ title }}

{% blocktrans %}
  You can click here to view and comment it: {{ domain }}{{ absolute_url }}
{% endblocktrans %}

{% blocktrans %}
  --
  Greetings from twistranet
{% endblocktrans %}


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