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.
25 lines
840 B
25 lines
840 B
<!-- padelclub_backend/shop/templates/shop/payment_cancel.html -->
|
|
{% extends 'tournaments/base.html' %}
|
|
|
|
{% block head_title %}La Boutique{% endblock %}
|
|
{% block first_title %}Padel Club{% endblock %}
|
|
{% block second_title %}La Boutique{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% include 'shop/partials/navigation_base.html' %}
|
|
|
|
<div class="grid-x">
|
|
<div class="cell medium-6 large-6 padding10">
|
|
<h1 class="club padding10">Paiement</h1>
|
|
<div class="bubble">
|
|
<h2>Le paiement a été annulé</h2>
|
|
<p>Votre commande n'a pas été finalisée car le paiement a été annulé.</p>
|
|
|
|
<div class="cart-summary">
|
|
<a class="confirm-nav-button checkout-button" href="{% url 'shop:view_cart' %}">Retour au panier</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|