Compare commits

..

No commits in common. "fix-bug-email-template" and "master" have entirely different histories.

2 changed files with 15 additions and 0 deletions

View File

@ -55,6 +55,7 @@ class GASLoginView(GASContextMixin, LoginView):
class GASPasswordResetView(GASContextMixin, PasswordResetView): class GASPasswordResetView(GASContextMixin, PasswordResetView):
template_name = "gas/reset.html" template_name = "gas/reset.html"
html_email_template_name = "registration/password_reset_email.html"
success_url = reverse_lazy("gas:password_reset_done") success_url = reverse_lazy("gas:password_reset_done")

View File

@ -0,0 +1,14 @@
{% load i18n %}{% autoescape off %}
{% blocktranslate %}You're receiving this email because you requested a password reset for your user account at {{ site_name }}.{% endblocktranslate %}
{% translate "Please go to the following page and choose a new password:" %}
{% block reset_link %}
{{ protocol }}://{{ domain }}{% url 'gas:password_reset_confirm' uidb64=uid token=token %}
{% endblock %}
{% translate 'Your username, in case youve forgotten:' %} {{ user.get_username }}
{% translate "Thanks for using our site!" %}
{% blocktranslate %}The {{ site_name }} team{% endblocktranslate %}
{% endautoescape %}