forked from digitales/kompass
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
625 B
HTML
23 lines
625 B
HTML
{% extends "members/base.html" %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block title %}
|
|
{% trans "Waiting confirmation failed" %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{% trans "Waiting confirmation failed" %}</h1>
|
|
|
|
{% if expired %}
|
|
{% url 'members:register_waiting_list' as reg_wait_link %}
|
|
<p>{% blocktrans %}Unfortunately, you did not confirm your intention to stay on the waiting list in time. You lost your spot on the list. You can{% endblocktrans %}
|
|
<a href="{{reg_wait_link}}">{% trans "rejoin the waiting list" %}</a>.
|
|
</p>
|
|
{% else %}
|
|
<p>{% trans "The supplied link is invalid." %}</p>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|