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 }} Temporary login link{% endblocktrans %}{% endsubject %}
13 {% htmlcontent notifications/base.html %}
14 <p style="{{ p_style }}">
15 {% blocktrans %}The following link grants you a one time access to your account at {{ app_name }}.{% endblocktrans %}
17 <p style="{{ p_style }}"><a style="{{ a_style }}" href="{% fullurl auth_tempsignin user=recipient.id,code=temp_login_code %}">{% trans "Go to your account" %}</a></p>
19 <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>
21 <p style="{{ p_style }}">{% fullurl auth_tempsignin user=recipient.id,code=temp_login_code %}</p>
24 {% textcontent notifications/base_text.html %}
25 {% blocktrans %}The following url grants you a one time access to your account at {{ app_name }}.{% endblocktrans %}
27 {% fullurl auth_tempsignin user=recipient.id,code=temp_login_code %}