27 lines
1.0 KiB
HTML
Raw Normal View History

2014-05-23 17:22:32 +02:00
{% load i18n %}{% load bootstrap %}
2013-09-28 12:43:57 +02:00
{% comment %}
This template is used for the html alternative of the activation email
if you use a django-registration backend that looks for it. e.g.
https://github.com/huseyinyilmaz/django-registration-extended-backend
{% endcomment %}
{% url 'registration_activate' activation_key as activation_key_url %}
{% blocktrans with sitename=site.name sitedomain=site.domain requestscheme=request.scheme %}<body>
2013-09-28 12:43:57 +02:00
<h3>Account registration for {{ sitename }}</h3>
<p>
You (or someone pretending to be you) have asked to register an account at
<b>{{ sitename }}</b>.<br/>
If this wasn't you, please ignore this email and your address will be removed
from our records.
</p>
<p>
To activate this account, please click the following link within the next
<b>{{ expiration_days }}</b> days:<br/>
<a href="{{ requestscheme }}://{{ sitedomain }}{{ activation_key_url }}">{{ requestscheme }}://{{ sitedomain }}{{ activation_key_url }}</a>
2013-09-28 12:43:57 +02:00
</p>
<p>
Sincerely,<br/>
{{ sitename }} Management
</p>
</body>
{% endblocktrans %}