mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-02 11:52:27 +02:00
move calendar button to confirmation page
This commit is contained in:
parent
7ad2b57e64
commit
efb414f1f9
2 changed files with 6 additions and 3 deletions
|
@ -8,7 +8,7 @@
|
|||
</p>
|
||||
{% if user.is_authenticated %}
|
||||
<div class="buttons">
|
||||
<a class="button is-light" href={% url 'order:index' %}>
|
||||
<a class="button is-light" href="{% url 'order:index' %}">
|
||||
<i class="fa fa-arrow-left mr-3" aria-hidden="true"></i>Retour à mes commandes
|
||||
</a>
|
||||
</div>
|
||||
|
@ -34,7 +34,6 @@
|
|||
</p>
|
||||
<p><i class="fa fa-truck mr-3" aria-label="Date de livraison" title="Date de livraison" aria-hidden="true"></i>
|
||||
Livraison le {{ grouped_order.delivery_date }}
|
||||
<a href="{% url 'order:grouped_order_event' grouped_order.code %}" class="button is-light"><i class="fa fa-calendar" aria-label="Ajouter à mon agenda" title="Ajouter à mon agenda" aria-hidden="true"></i></a>
|
||||
</p>
|
||||
|
||||
{% if user == grouped_order.orga %}
|
||||
|
|
|
@ -23,7 +23,11 @@
|
|||
<p><i>{{ order.note }}</i></p>
|
||||
{% endif %}
|
||||
|
||||
<p>Rendez-vous le <strong>{{ order.grouped_order.delivery_date }}</strong>{% if order.grouped_order.place %} à <strong>{{ order.grouped_order.place }}</strong>{% endif %} pour récupérer vos produits !</p>
|
||||
<p>
|
||||
<a href="{% url 'order:grouped_order_event' order.grouped_order.code %}" class="button is-light mr-2"><i class="fa fa-calendar" aria-label="Ajouter à mon agenda" title="Ajouter à mon agenda" aria-hidden="true"></i></a>
|
||||
Rendez-vous le <strong>{{ order.grouped_order.delivery_date }}</strong>{% if order.grouped_order.place %} à <strong>{{ order.grouped_order.place }}</strong>{% endif %} pour récupérer vos produits !
|
||||
</p>
|
||||
|
||||
<p>Le paiement n'est pas (encore) pris en charge par la Chariotte. C'est l'organisateur·ice de la commande qui doit vous indiquer les moyens de paiement.
|
||||
<br>Pour toute question, vous pouvez contacter l'organisateur·ice de la commande, <strong>{{ order.grouped_order.orga }}</strong> :
|
||||
<a href="mailto:{{ order.grouped_order.orga.username }}">Envoyer un mail</a></p>
|
||||
|
|
Loading…
Reference in a new issue