fix: set html email template #7

Merged
shagi merged 1 commits from reset-password-implementation into master 2023-12-19 10:54:24 +01:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit b6a602d0d9 - Show all commits

View File

@ -55,7 +55,7 @@ class GASLoginView(GASContextMixin, LoginView):
class GASPasswordResetView(GASContextMixin, PasswordResetView): class GASPasswordResetView(GASContextMixin, PasswordResetView):
template_name = "gas/reset.html" template_name = "gas/reset.html"
email_template_name = "email/password_reset_email.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")