You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
657 B
14 lines
657 B
{% extends "registration/base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Account activated" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{% trans "Account activated." %}</h1>
|
|
{% load humanize %}
|
|
{% if account %}
|
|
<p>{% blocktrans %}Thanks for signing up! Now you can <a href="/accounts/login/">log in</a>{% endblocktrans %}.</p>
|
|
{% else %}
|
|
<p>{% blocktrans with days=expiration_days|apnumber %}Sorry, it didn't work. Either your activation link was incorrect, or the activation key for your account has expired; activation keys are only valid for {{ days }} days after registration.{% endblocktrans %}</p>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|