{% extends "registration/_registration_base.html" %}
{% block title %}{% if account %}Activation complete{% else %}Activation problem{% endif %}{% endblock %}
{% block content %}
  {% if account %}
    Thanks {{ account }}, activation complete! You may now login
    using the username and password you set at registration.
  {% else %}
    Oops – it seems that your activation key is invalid.
    Please check the url again.
  {% endif %}
{% endblock %}