2020-04-05 02:26:42 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block content %}
|
2020-04-09 20:03:26 +00:00
|
|
|
{% if validlink %}
|
|
|
|
{% trans "Your email have successfully been validated." %}
|
2020-04-16 21:31:36 +00:00
|
|
|
{% if user_object.profile.registration_valid %}
|
2020-04-09 20:03:26 +00:00
|
|
|
{% blocktrans %}You can now <a href="{{ login_url }}">log in</a>.{% endblocktrans %}
|
|
|
|
{% else %}
|
|
|
|
{% trans "You must pay now your membership in the Kfet to complete your registration." %}
|
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
|
|
|
{% trans "The link was invalid. The token may have expired. Please send us an email to activate your account." %}
|
|
|
|
{% endif %}
|
2020-04-05 02:26:42 +00:00
|
|
|
{% endblock %}
|