parent
4fbfce8393
commit
a5c9765366
@ -0,0 +1,30 @@ |
||||
{% extends 'tournaments/base.html' %} |
||||
{% block head_title %} Paiement {% endblock %} |
||||
{% block first_title %} Padel Club {% endblock %} |
||||
{% block second_title %} Paiement {% endblock %} |
||||
|
||||
{% block content %} |
||||
{% load static %} |
||||
{% load tz %} |
||||
|
||||
<div class="grid-x"> |
||||
<div class="bubble"> |
||||
<div class="cell medium-6 large-6 padding10"> |
||||
{% if payment_status == 'success' %} |
||||
<label class="title">Paiement réussi !</label> |
||||
<p>Votre inscription a été confirmée. Un email de confirmation vous a été envoyé.</p> |
||||
{% if show_details and tournament %} |
||||
<p>Tournoi : <strong>{{ tournament.display_name }}</strong></p> |
||||
{% endif %} |
||||
{% elif payment_status == 'cancel' %} |
||||
<label class="title">Paiement annulé</label> |
||||
<p>Votre paiement a été annulé. Aucun montant n'a été prélevé.</p> |
||||
{% else %} |
||||
<label class="title">Paiement en cours de traitement</label> |
||||
<p>Votre paiement est en cours de traitement. Vous recevrez un email de confirmation sous peu.</p> |
||||
{% endif %} |
||||
<p>Vous pouvez maintenant fermer cette page.</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
{% endblock %} |
||||
Loading…
Reference in new issue