-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
wlorenzetti
committed
Sep 29, 2023
1 parent
14a14e9
commit 80898f8
Showing
10 changed files
with
207 additions
and
83 deletions.
There are no files selected for viewing
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
8 changes: 4 additions & 4 deletions
8
g3w-admin/usersmanage/templates/django_registration/activated_by_admin_email_body.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
g3w-admin/usersmanage/templates/django_registration/activated_by_admin_email_subject.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
{{ SETTINGS.REGISTRATION_EMAIL_SUBJECT_PREFIX }} {{user.username}} your account is active. | ||
{% load i18n %} | ||
{{ SETTINGS.REGISTRATION_EMAIL_SUBJECT_PREFIX }} {{user.username}} {% trans 'your account is active' %}. |
6 changes: 3 additions & 3 deletions
6
g3w-admin/usersmanage/templates/django_registration/activation_admin_email_body.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
g3w-admin/usersmanage/templates/django_registration/activation_admin_email_subject.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
{{ SETTINGS.REGISTRATION_EMAIL_SUBJECT_PREFIX }} New registration by {{user.username}} | ||
{% load i18n %} | ||
{{ SETTINGS.REGISTRATION_EMAIL_SUBJECT_PREFIX }} {% trans 'New registration by' %} {{user.username}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
g3w-admin/usersmanage/templates/django_registration/activation_email_body.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{% load i18n %} | ||
{% trans 'Dear' %} {{ user.username }}, | ||
|
||
Dear {{ user.username }}, | ||
|
||
please got to the following link or copy it and paste in you browser to activate your account and validate your email. | ||
{% trans 'please got to the following link or copy it and paste in you browser to activate your account and validate your email' %}. | ||
|
||
{{ scheme }}://{{ site }}{% url 'django_registration_activate' activation_key %} | ||
|
||
The link will be active for {{ expiration_days }} days! | ||
{% trans 'The link will be active for {{ expiration_days }} days' %}! | ||
|
||
{{ SETTINGS.REGISTRATION_EMAIL_BODY_SIGN }} |
3 changes: 2 additions & 1 deletion
3
g3w-admin/usersmanage/templates/django_registration/activation_email_subject.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
{{ SETTINGS.REGISTRATION_EMAIL_SUBJECT_PREFIX }} {{user.username}} active your account | ||
{% load i18n %} | ||
{{ SETTINGS.REGISTRATION_EMAIL_SUBJECT_PREFIX }} {{user.username}} {% trans 'active your account' %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters