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.
35 lines
1.2 KiB
35 lines
1.2 KiB
<!-- 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 %}
|
|
|
|
<nav class="margin10">
|
|
<a href="{% url 'shop:product_list' %}">La Boutique</a>
|
|
<a href="{% url 'index' %}" class="orange">Accueil</a>
|
|
<a href="{% url 'clubs' %}" class="orange">Clubs</a>
|
|
{% if user.is_authenticated %}
|
|
<a href="{% url 'my-tournaments' %}" class="orange">Mes tournois</a>
|
|
<a href="{% url 'profile' %}">Mon compte</a>
|
|
{% else %}
|
|
<a href="{% url 'login' %}">Se connecter</a>
|
|
{% endif %}
|
|
</nav>
|
|
|
|
<div class="grid-x">
|
|
<div class="cell medium-6 large-6 my-block">
|
|
<h1 class="club my-block topmargin20">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 %}
|
|
|