{% extends "email_base.html" %} {% load i18n %} {% load extra_tags %} {% block content %}

{% trans "Hello" %} {% user_var username %},

{% blocktrans with question.author.username as author_name and settings.APP_SHORT_NAME as app_title and settings.APP_URL as app_url and question.get_absolute_url as question_url and question.title as question_title and question.tagnames as question_tags %} {{ author_name }} has just posted a new question on {{ app_title }}, with title {{ question_title }} and tagged {{ question_tags }}: {% endblocktrans %}

{{ question.html|safe }}

{% blocktrans %} Don't forget to come over and cast your vote. {% endblocktrans %}

{% blocktrans %}Sincerely,
Forum Administrator{% endblocktrans %}

{% endblock %}