+
Confirmation requise
+
Votre place dans le tournoi a été libérée suite à une désinscription.
+ {% if tournament.should_request_payment and tournament.online_payment_is_mandatory %}
+
Vous devez payer votre participation pour confirmer votre inscription.
+ {% endif %}
+ {% if team.get_confirmation_deadline %}
+ {% timezone tournament.timezone %}
+ {% with time_to_confirm=team.get_confirmation_deadline %}
+ {% now "Y-m-d H:i:s" as current_time_str %}
+ {% if time_to_confirm %}
+ {% if time_to_confirm|date:"Y-m-d H:i:s" > current_time_str %}
+
Vous devez confirmer votre participation avant le:
+
{{ time_to_confirm|date:"d/m/Y à H:i" }}
+
+
Temps restant: {{ time_to_confirm|timeuntil }}
+ {% else %}
+
+ Le délai de confirmation est expiré. Votre place a été proposée à une autre équipe.
+
+ {% endif %}
+ {% endif %}
+ {% endwith %}
+ {% endtimezone %}
+ {% endif %}
+
+ {% endif %}
+ {% if messages %}
+
{% if team.is_in_waiting_list >= 0 %}
Tournoi complet, vous êtes en liste d'attente.
@@ -43,15 +81,6 @@
Inscrits le {{ team.local_registration_date }}
- {% if messages %}
-
- {% for message in messages %}
-
- {{ message }}
-
- {% endfor %}
-
- {% endif %}
{% if tournament.should_request_payment and team.is_in_waiting_list < 0 %}
@@ -62,36 +91,18 @@
{% else %}
{% endif %}
- {% elif team.needs_confirmation %}
+ {% endif %}
+ {% if team.needs_confirmation and tournament.online_payment_is_mandatory is False %}
-
Confirmation requise
-
Votre place dans le tournoi a été libérée suite à une désinscription.
-
- {% if team.get_confirmation_deadline %}
- {% timezone tournament.timezone %}
- {% with time_to_confirm=team.get_confirmation_deadline %}
- {% now "Y-m-d H:i:s" as current_time_str %}
- {% if time_to_confirm %}
- {% if time_to_confirm|date:"Y-m-d H:i:s" > current_time_str %}
-
Vous devez confirmer votre participation avant le:
-
{{ time_to_confirm|date:"d/m/Y à H:i" }}
-
-
Temps restant: {{ time_to_confirm|timeuntil }}
- {% else %}
-
- Le délai de confirmation est expiré. Votre place a été proposée à une autre équipe.
-
- {% endif %}
- {% endif %}
- {% endwith %}
- {% endtimezone %}
- {% endif %}
-