for the moment this is for the password change url used in the auth dropdown, and a better login page, but this might become other stuff eventually too. the signup page exists and is linked to, even if i don't have a great reason for this to exist bunch of templates added now to support the intentional and unintentional stuff
29 lines
1.0 KiB
Plaintext
29 lines
1.0 KiB
Plaintext
{% load i18n %}{% trans "Account activation on" %} {{ site.name }}
|
|
|
|
|
|
{% comment %}
|
|
**registration/activation_email_subject.txt**
|
|
|
|
Used to generate the subject line of the activation email. Because the
|
|
subject line of an email must be a single line of text, any output
|
|
from this template will be forcibly condensed to a single line before
|
|
being used. This template has the following context:
|
|
|
|
``activation_key``
|
|
The activation key for the new account.
|
|
|
|
``expiration_days``
|
|
The number of days remaining during which the account may be
|
|
activated.
|
|
|
|
``site``
|
|
An object representing the site on which the user registered;
|
|
depending on whether ``django.contrib.sites`` is installed, this
|
|
may be an instance of either ``django.contrib.sites.models.Site``
|
|
(if the sites application is installed) or
|
|
``django.contrib.sites.models.RequestSite`` (if not). Consult `the
|
|
documentation for the Django sites framework
|
|
<http://docs.djangoproject.com/en/dev/ref/contrib/sites/>`_ for
|
|
details regarding these objects' interfaces.
|
|
{% endcomment %}
|