activate.html 291 Bytes
{% extends "base.html" %}
{% load i18n %}
{% load url from future %}

{% block content %}

    {% blocktrans %}
        <h1>Activation</h1>
        <p>Your account is now activated. Go <a href="{% url 'main' %}">here</a>
            to continue.</p>

    {% endblocktrans %}

{% endblock %}