add django-user-accounts
This commit is contained in:
6
templates/account/email/email_confirmation_message.txt
Normal file
6
templates/account/email/email_confirmation_message.txt
Normal file
@ -0,0 +1,6 @@
|
||||
{% load i18n account_tags %}{% blocktrans with site_name=current_site.name %}A user on {{ site_name }} has created an account using this email address.
|
||||
|
||||
To confirm this email address, go to {{ activate_url }}
|
||||
|
||||
If you did not sign up for this site, you can ignore this message.
|
||||
{% endblocktrans %}
|
||||
1
templates/account/email/email_confirmation_subject.txt
Normal file
1
templates/account/email/email_confirmation_subject.txt
Normal file
@ -0,0 +1 @@
|
||||
{% load i18n %}{% blocktrans with site_name=current_site.name %}Confirm email address for {{ site_name }}{% endblocktrans %}
|
||||
4
templates/account/email/invite_user.txt
Normal file
4
templates/account/email/invite_user.txt
Normal file
@ -0,0 +1,4 @@
|
||||
{% load i18n %}{% blocktrans with name=current_site.name %}You have been invited to sign up at {{ name }}.
|
||||
|
||||
{{ signup_url }}
|
||||
{% endblocktrans %}
|
||||
1
templates/account/email/invite_user_subject.txt
Normal file
1
templates/account/email/invite_user_subject.txt
Normal file
@ -0,0 +1 @@
|
||||
{% load i18n %}{% blocktrans with name=current_site.name %}Create an account on {{ name }}{% endblocktrans %}
|
||||
1
templates/account/email/password_change.txt
Normal file
1
templates/account/email/password_change.txt
Normal file
@ -0,0 +1 @@
|
||||
{% load i18n %}{% blocktrans with now=user.account.now %}This is the email notification to confirm your password has been changed on {{ now }}.{% endblocktrans %}
|
||||
1
templates/account/email/password_change_subject.txt
Normal file
1
templates/account/email/password_change_subject.txt
Normal file
@ -0,0 +1 @@
|
||||
{% load i18n %}{% trans "Change password email notification" %}
|
||||
5
templates/account/email/password_reset.txt
Normal file
5
templates/account/email/password_reset.txt
Normal file
@ -0,0 +1,5 @@
|
||||
{% load i18n %}{% blocktrans with site_name=current_site.name %}You're receiving this email because you or someone else has requested a password for your user account at {{ site_name }}.
|
||||
It can be safely ignored if you did not request a password reset. Click the link below to reset your password.
|
||||
|
||||
{{ password_reset_url }}
|
||||
{% endblocktrans %}
|
||||
1
templates/account/email/password_reset_subject.txt
Normal file
1
templates/account/email/password_reset_subject.txt
Normal file
@ -0,0 +1 @@
|
||||
{% load i18n %}{% blocktrans with site_name=current_site.name %}[{{ site_name }}] Password reset{% endblocktrans %}
|
||||
Reference in New Issue
Block a user