]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/auth/temp_login_email.html
Update readers.py
[osqa.git] / forum / skins / default / templates / auth / temp_login_email.html
1 {% load i18n extra_tags email_tags %}
2
3 {% declare %}
4     prefix = settings.EMAIL_SUBJECT_PREFIX
5     app_name = settings.APP_SHORT_NAME
6
7     exclude_finetune = True
8 {% enddeclare %}
9
10 {% email %}
11     {% subject %}{% blocktrans %}{{ prefix }} Temporary login link{% endblocktrans %}{% endsubject %}
12
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 %}
16         </p>
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>
18
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>
20
21         <p style="{{ p_style }}">{% fullurl auth_tempsignin user=recipient.id,code=temp_login_code %}</p>
22     {% endhtmlcontent %}
23
24 {% textcontent notifications/base_text.html %}
25 {% blocktrans %}The following url grants you a one time access to your account at {{ app_name }}.{% endblocktrans %}
26
27 {% fullurl auth_tempsignin user=recipient.id,code=temp_login_code %}
28 {% endtextcontent %}
29
30 {% endemail %}
31