diff options
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 |
commit | bb3d157659ee616877ebfba8f512e30bd2ec26eb (patch) | |
tree | ea926b1226d3ed586a97fe8fcb62976df0011cfd | |
parent | 023ab0dc1029fc2d70a2b4038ae76d19a24be4e9 (diff) | |
download | Ishtar-bb3d157659ee616877ebfba8f512e30bd2ec26eb.tar.bz2 Ishtar-bb3d157659ee616877ebfba8f512e30bd2ec26eb.zip |
Add activation complete tmeplate for registration
-rw-r--r-- | ishtar_common/templates/registration/activation_complete.html | 14 |
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 %} |