From bb3d157659ee616877ebfba8f512e30bd2ec26eb Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Sun, 28 Sep 2014 15:02:30 +0200 Subject: Add activation complete tmeplate for registration --- .../templates/registration/activation_complete.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ishtar_common/templates/registration/activation_complete.html (limited to 'ishtar_common') diff --git a/ishtar_common/templates/registration/activation_complete.html b/ishtar_common/templates/registration/activation_complete.html new file mode 100644 index 000000000..b243d22f2 --- /dev/null +++ b/ishtar_common/templates/registration/activation_complete.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} +{% load url from future %} +{% load i18n %} + +{% block content %} +
+

{% trans "You may now login with your username and password." %}

+{% if not user.is_authenticated %} +{% trans "Login now" %} +{% else %} +{% trans "Home" %} +{% endif %} +
+{% endblock %} -- cgit v1.2.3