1 {% load i18n extra_tags email_tags %}
 
   4     prefix = html.mark_safe(settings.EMAIL_SUBJECT_PREFIX)
 
   5     app_name = settings.APP_SHORT_NAME
 
   6     safe_app_name = html.mark_safe(settings.APP_SHORT_NAME)
 
   7     question_author = html.mark_safe(question.author.username)
 
   8     question_url = settings.APP_URL + question.get_absolute_url()
 
   9     question_title = html.mark_safe(question.title)
 
  10     question_tags = html.mark_safe(question.tagnames)
 
  11     safe_body = html.html2text(question.html)
 
  12     author_link = html.objlink(question.author, style=settings.EMAIL_ANCHOR_STYLE)
 
  13     question_link = html.objlink(question, style=settings.EMAIL_ANCHOR_STYLE)
 
  14     tag_links = html.mark_safe(" ".join([html.objlink(t, style=settings.EMAIL_ANCHOR_STYLE) for t in question.tags.all()]))
 
  18     {% subject %}{% blocktrans %}{{ prefix }} New question: {{ question_title }} on {{ safe_app_name }}{% endblocktrans %}{% endsubject %}
 
  20     {% htmlcontent notifications/base.html %}
 
  21         <p style="{{ p_style }}">
 
  23             {{ author_link }} has just posted a new question on {{ app_name }}, entitled
 
  25              and tagged "<em>{{ tag_links }}</em>". Here's what it says:
 
  30             {{ question.html|safe }}
 
  33         <p style="{{ p_style }}">{% trans "Don't forget to come over and cast your vote." %}</p>        
 
  36 {% textcontent notifications/base_text.html %}
 
  38 {{ question_author }} has just posted a new question on {{ safe_app_name }}, entitled
 
  39 "{{ question_title }}" and tagged {{ question_tags }}:
 
  43 {% trans "Don't forget to come over and cast your vote." %}