]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/auth/mail_validation.html
Validation email template bugfix
[osqa.git] / forum / skins / default / templates / auth / mail_validation.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 }} Your email validation link {{ app_name }}{% endblocktrans %}{% endsubject %}
12
13     {% htmlcontent notifications/base.html %}
14         <p style="{{ p_style }}">{% trans "Please use the following link to help us verify your email address:" %}</p>
15
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>
17
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>
19
20         <p style="{{ p_style }}">{% fullurl "auth_validate_email" user=recipient.id code=validation_code %}</p>
21     {% endhtmlcontent %}
22
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:" %}
25
26 {% fullurl "auth_validate_email" user=recipient.id code=validation_code %}
27 {% endtextcontent %}
28
29 {% endemail %}
30