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.
24 lines
557 B
HTML
24 lines
557 B
HTML
{% extends "members/base.html" %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block title %}
|
|
{% trans "Waiting confirmed" %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{% trans "Waiting confirmed" %}</h1>
|
|
|
|
{% if already_confirmed %}
|
|
<p>{% blocktrans %}Thank you {{prename}} for your interest in staying on the waiting list.
|
|
Your spot was already confirmed.{% endblocktrans %}
|
|
</p>
|
|
{% else %}
|
|
<p>{% blocktrans %}Thank you {{prename}} for your interest in staying on the waiting list.
|
|
Your spot has been confirmed.{% endblocktrans %}
|
|
</p>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|