From 9c3df89cb62b67c292cbd54b224dc204a44a2291 Mon Sep 17 00:00:00 2001 From: FUNNYDMAN Date: Fri, 16 Nov 2018 17:24:11 +0300 Subject: [PATCH] fix problem with register confirmation --- README.md | 1 + eshop/accounts_ext/views.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 39aceae..4e98974 100644 --- a/README.md +++ b/README.md @@ -67,4 +67,5 @@ npm run dev 6. Restart gunicorn-eshop and celery-eshop daemons in systemd 7. Load fixture core fixture sites to configure site domain (before the FIRST http request) +8. Add corresponding entry to django_site table diff --git a/eshop/accounts_ext/views.py b/eshop/accounts_ext/views.py index f673f0d..455940c 100644 --- a/eshop/accounts_ext/views.py +++ b/eshop/accounts_ext/views.py @@ -149,7 +149,7 @@ class RegistrationDoneView(TemplateView): class ResendActivationView(ResendActivationViewBase): - template_name = 'registration/resend_activation.tml' + template_name = 'registration/resend_activation.html' def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs)