{% extends "index.html" %} {% load i18n %} {% block Headline %}Account activation{% endblock %} {% block Content %} {% if account %}

{% with account.username as username %} Thank you for registering!
From now on, you can login with your username ({{ username }}). {% endwith %}

{% else %}

Either the link was invalid, or you didn't activate your account within {{ expiration_days }} days after the registration. Please register again.

{% endif %} {% endblock %}