summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@proxience.com>2014-09-28 15:02:30 +0200
committerÉtienne Loks <etienne.loks@proxience.com>2014-09-28 15:02:30 +0200
commit7f940bbe6fa1d4f6b5d4743fd25d4fed238ed34f (patch)
treeea926b1226d3ed586a97fe8fcb62976df0011cfd
parentfc80710b18416f74caca2b2b77e1b080cb127993 (diff)
downloadIshtar-7f940bbe6fa1d4f6b5d4743fd25d4fed238ed34f.tar.bz2
Ishtar-7f940bbe6fa1d4f6b5d4743fd25d4fed238ed34f.zip
Add activation complete tmeplate for registration
-rw-r--r--ishtar_common/templates/registration/activation_complete.html14
1 files changed, 14 insertions, 0 deletions
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 %}
+<div class='info'>
+<p>{% trans "You may now login with your username and password." %}</p>
+{% if not user.is_authenticated %}
+<a href="{% url "auth_login" %}">{% trans "Login now" %}</a>
+{% else %}
+<a href="/">{% trans "Home" %}</a>
+{% endif %}
+</div>
+{% endblock %}