2011-09-04 04:21:51 +00:00
{% extends "registration/registration_base.html" %}
{% block title %}{% if account %}Activation complete{% else %}Activation problem{% endif %}{% endblock %}
2012-01-13 21:24:34 +00:00
{% block doccontent %}
2012-05-27 00:57:59 +00:00
{% if not user.is_authenticated %}
2011-09-04 04:21:51 +00:00
{% if account %}
2012-01-13 21:24:34 +00:00
Thanks {{ account }}, activation complete! You may now < a href = '{% url auth_login %}' > sign in< / a > using the username and password you set at registration.
2011-09-04 04:21:51 +00:00
{% else %}
Oops – it seems that your activation key is invalid. Please check the url again.
{% endif %}
2012-05-27 00:57:59 +00:00
{% else %}
< div >
2012-07-06 16:25:20 +00:00
You are logged in as < a href = "{% url supporter supporter_username=request.user.username %}" > {{ request.user.username }}< / a > .
2012-05-27 00:57:59 +00:00
< / div >
{% endif %}
2011-09-04 04:21:51 +00:00
{% endblock %}