add django-user-accounts

This commit is contained in:
Seth Ladygo
2019-03-13 19:12:06 -07:00
parent 6e21f5b91a
commit 0db088d8f9
28 changed files with 371 additions and 1 deletions

View 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 %}

View File

@ -0,0 +1 @@
{% load i18n %}{% blocktrans with site_name=current_site.name %}Confirm email address for {{ site_name }}{% endblocktrans %}

View 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 %}

View File

@ -0,0 +1 @@
{% load i18n %}{% blocktrans with name=current_site.name %}Create an account on {{ name }}{% endblocktrans %}

View 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 %}

View File

@ -0,0 +1 @@
{% load i18n %}{% trans "Change password email notification" %}

View 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 %}

View File

@ -0,0 +1 @@
{% load i18n %}{% blocktrans with site_name=current_site.name %}[{{ site_name }}] Password reset{% endblocktrans %}