You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.2 KiB
30 lines
1.2 KiB
{% 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 %}
|
|
|