1 {% load i18n extra_tags email_tags %}
 
   5     reporter_author = html.mark_safe(smart_str(user.username))
 
   6     reported = html.mark_safe(smart_str(reported.username))
 
   8     reported_link = html.objlink(reported, style=settings.EMAIL_ANCHOR_STYLE)
 
   9     message = html.mark_safe(smart_str(message))
 
  14     {% subject %}{% blocktrans %}{{ prefix }} User reported: {{ reported }} by {{ reporter_author }}{% endblocktrans %}{% endsubject %}
 
  16     {% htmlcontent notifications/base.html %}
 
  17         <p style="{{ p_style }}">
 
  19                         User reported: {{ reported }} by {{ reporter_author }}.<br/>
 
  20                         Reporter Message: {{message}}
 
  27 {% textcontent notifications/base_text.html %}
 
  29                         User reported: {{ reported }} by {{ reporter_author }}.
 
  30                         Reporter Message: {{message}}