-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…8538) (#8539) Co-authored-by: Alessio Fabiani <[email protected]>
- Loading branch information
1 parent
1d0f89e
commit 7ddf753
Showing
8 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
geonode/templates/account/email/email_confirmation_message.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,8 +1,8 @@ | ||
{% load account %}{% user_display user as user_display %}{% load i18n %}{% autoescape off %}{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}Hello from {{ site_name }}! | ||
{% load account %}{% user_display user as user_display %}{% load i18n %}{% autoescape off %}{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}Hello from {{ site_name|urlencode }}! | ||
|
||
You're receiving this e-mail because user {{ user_display }} has given yours as an e-mail address to connect their account. | ||
|
||
To confirm this is correct, go to {{ activate_url }} | ||
{% endblocktrans %}{% endautoescape %} | ||
{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}Thank you from {{ site_name }}! | ||
{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}Thank you from {{ site_name|urlencode }}! | ||
{{ site_domain }}{% endblocktrans %} |
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 @@ | ||
{% load i18n %}{% autoescape off%}{% blocktrans with site_name=current_site.name %}Please confirm email address for {{ site_name }}{% endblocktrans %}{% endautoescape %} | ||
{% load i18n %}{% autoescape off%}{% blocktrans with site_name=current_site.name %}Please confirm email address for {{ site_name|urlencode }}{% endblocktrans %}{% endautoescape %} |
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,3 +1,3 @@ | ||
{% load i18n %}{% blocktrans with site_name=current_site.name %}You have been invited to sign up at {{ site_name }}.{% endblocktrans %} | ||
{% load i18n %}{% blocktrans with site_name=current_site.name %}You have been invited to sign up at {{ site_name|urlencode }}.{% endblocktrans %} | ||
|
||
{{ signup_url }} |
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 @@ | ||
{% load i18n %}{% blocktrans with site_name=current_site.name %}Create an account on {{ site_name }}{% endblocktrans %} | ||
{% load i18n %}{% blocktrans with site_name=current_site.name %}Create an account on {{ site_name|urlencode }}{% endblocktrans %} |
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
6 changes: 3 additions & 3 deletions
6
geonode/templates/invitations/email/email_invite_message.html
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
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
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,4 +1,4 @@ | ||
{% load i18n %} | ||
{% autoescape off %} | ||
{{ inviter_name }} is inviting you to join {{ site_name }} | ||
{{ inviter_name }} is inviting you to join {{ site_name|urlencode }} | ||
{% endautoescape %} |