{% extends "accounts/base.html" %}
{% load i18n %}
{% block title %}
{% trans "Account Activation" %}
{% endblock %}
{% block body %}
{% if account %}
{% trans "Your account has been activated." %}
{% if not user.is_authenticated %}
{% trans "Log in" %} now.
{% else %}
{% trans "Go to the dashboard" %}
{% endif %}
{% else %}
{% trans "Activation failed." %}
{% endif %}
{% endblock %}