From 4b93e5a31804c865848bbd28a447e1f9463d03c9 Mon Sep 17 00:00:00 2001 From: Ivlev Denis Date: Fri, 2 Feb 2018 10:03:33 +0300 Subject: [PATCH] Fix error message if user did not confirm email. Now check fb id too. --- project/templates/lilcity/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/templates/lilcity/index.html b/project/templates/lilcity/index.html index 53e92395..d6ef826c 100644 --- a/project/templates/lilcity/index.html +++ b/project/templates/lilcity/index.html @@ -158,7 +158,7 @@ {% endif %} - {% if user.is_authenticated and not user.is_email_proved %} + {% if user.is_authenticated and not user.fb_id or user.is_authenticated and not user.is_email_proved %}
Необходимо подтвердить электронную почту
{% endif %}