1 {% load i18n extra_tags email_tags %}
 
   4     prefix = settings.EMAIL_SUBJECT_PREFIX
 
   5     app_name = settings.APP_SHORT_NAME
 
   7     exclude_finetune = True
 
  11     {% subject %}{% blocktrans %}{{ prefix }} Your email validation link {{ app_name }}{% endblocktrans %}{% endsubject %}
 
  13     {% htmlcontent notifications/base.html %}
 
  14         <p style="{{ p_style }}">{% trans "Please use the following link to help us verify your email address:" %}</p>
 
  16         <p style="{{ p_style }}"><a  style="{{ a_style }}" href="{% fullurl auth_validate_email user=recipient.id,code=validation_code %}">{% trans "Validate my email address" %}</a></p>
 
  18         <p style="{{ p_style }}">{% trans "If the above link is not clickable, copy and paste this url into your web browser's address bar:" %}</p>
 
  20         <p style="{{ p_style }}">{% fullurl auth_validate_email user=recipient.id,code=validation_code %}</p>
 
  23 {% textcontent notifications/base_text.html %}
 
  24 {% trans "Copy and paste this url into your web browser's address bar to help us verify your email address:" %}
 
  26 {% fullurl auth_validate_email user=recipient.id,code=validation_code %}