|
|
|
|
@ -17,7 +17,6 @@ |
|
|
|
|
<div class="cell medium-6 large-6 padding10"> |
|
|
|
|
{% if tournament.enable_online_registration and team %} |
|
|
|
|
<h1 class="club padding10 topmargin20">Votre équipe</h1 > |
|
|
|
|
|
|
|
|
|
<div class="bubble"> |
|
|
|
|
{% if team.needs_confirmation %} |
|
|
|
|
<div class="alert {% if team.get_confirmation_deadline %}alert-warning{% else %}alert-info{% endif %}"> |
|
|
|
|
@ -72,7 +71,7 @@ |
|
|
|
|
{% endif %} |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="semibold topmargin20"> |
|
|
|
|
<div class="semibold"> |
|
|
|
|
{% for player in team.players_sorted_by_rank %} |
|
|
|
|
<div>{{ player.name }}</div> |
|
|
|
|
{% endfor %} |
|
|
|
|
@ -81,11 +80,38 @@ |
|
|
|
|
<p> |
|
|
|
|
<div>Inscrits le {{ team.local_registration_date }}</div> |
|
|
|
|
</p> |
|
|
|
|
|
|
|
|
|
{% if team.call_date %} |
|
|
|
|
<div class="topmargin20"> |
|
|
|
|
<h4 class="semibold">Convocation</h4> |
|
|
|
|
<div> |
|
|
|
|
Vous avez été convoqué(e)s le {{ team.local_call_date|date:"d/m/Y à H:i" }} |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
{% if team.confirmation_date %} |
|
|
|
|
<div class="success-message"> |
|
|
|
|
<span class="icon">✅</span> Convocation confirmée le {{ team.confirmation_date|date:"d/m/Y à H:i" }} |
|
|
|
|
</div> |
|
|
|
|
{% else %} |
|
|
|
|
<div> |
|
|
|
|
Merci de confirmer la réception de votre convocation. |
|
|
|
|
</div> |
|
|
|
|
<form method="post" action="{% url 'confirm_call' tournament.id %}"> |
|
|
|
|
{% csrf_token %} |
|
|
|
|
<button type="submit" class="rounded-button positive-button"> |
|
|
|
|
Confirmer la réception |
|
|
|
|
</button> |
|
|
|
|
</form> |
|
|
|
|
{% endif %} |
|
|
|
|
</div> |
|
|
|
|
{% endif %} |
|
|
|
|
|
|
|
|
|
<!-- Payment status information --> |
|
|
|
|
{% if tournament.should_request_payment and team.is_in_waiting_list < 0 %} |
|
|
|
|
<div style="margin-bottom: 40px;"> |
|
|
|
|
<div class="topmargin20"> |
|
|
|
|
<h4 class="semibold">Paiement</h4> |
|
|
|
|
{% if team.is_paid %} |
|
|
|
|
<div class="success-message topmargin20"> |
|
|
|
|
<div class="success-message"> |
|
|
|
|
<span class="icon">✅</span> Paiement confirmé |
|
|
|
|
</div> |
|
|
|
|
{% else %} |
|
|
|
|
@ -113,12 +139,12 @@ |
|
|
|
|
{% endif %} |
|
|
|
|
|
|
|
|
|
{% if tournament.is_unregistration_possible %} |
|
|
|
|
<div class="topmargin20"> |
|
|
|
|
<div> |
|
|
|
|
{% if tournament.is_refund_possible and team.is_paid %} |
|
|
|
|
<p class="alert alert-info"> |
|
|
|
|
<p class="minor info"> |
|
|
|
|
Si vous vous désinscrivez, votre inscription sera remboursée automatiquement sur votre carte bancaire. |
|
|
|
|
{% if tournament.refund_date_limit %} |
|
|
|
|
<br><small>Remboursement possible jusqu'au {{ tournament.refund_date_limit|date:"d/m/Y à H:i" }}</small> |
|
|
|
|
<div>Remboursement possible jusqu'au {{ tournament.refund_date_limit|date:"d/m/Y à H:i" }}</div> |
|
|
|
|
{% endif %} |
|
|
|
|
</p> |
|
|
|
|
{% endif %} |
|
|
|
|
|