1 {% extends "email_base.html" %}
\r 
   3 {% load extra_tags %}
\r 
   6     <p>{% trans "Hello" %} {% user_var username %},</p>
\r 
   9         {% blocktrans with answer.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 %}
\r 
  10         {{ author_name }} has just posted a new answer on {{ app_title }} to the question
\r 
  11         <a href="{{ app_url }}{{ question_url }}">{{ question_title }}"</a>:
\r 
  16         {{ answer.html|safe }}
\r 
  21         Don't forget to come over and cast your vote.
\r 
  25     <p>{% blocktrans %}Sincerely,<br />
\r 
  26     Forum Administrator{% endblocktrans %}</p>
\r