la-chariotte/la_chariotte/templates/mail/order_confirm_mail.html

35 lines
No EOL
1.4 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'mail/base_mail.html' %}
{% block content %}
<p>Merci, {{ order.author.first_name }} !</p>
<p>Votre participation à la commande groupée «{{ order.grouped_order }}» a bien été confirmée.</p>
<p><strong>Votre commande :</strong></p>
<ul>
{% for item in order.ordered_items.all %}
<li>{{ item.nb }} × {{ item.item }} : {{ item.get_price }} €</li>
{% endfor %}
</ul>
<p>Prix total de la commande : <strong>{{ order.price }} €</strong>
{% if order.note %}
<p><strong>Votre commentaire :</strong><br>
<i>{{ order.note }}</i></p>
{% endif %}
<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.</p>
<p><strong>Rendez-vous pour la distribution</strong> :
le {{ order.grouped_order.delivery_date }}{% if order.grouped_order.delivery_slot %}, {{ order.grouped_order.delivery_slot }}{% endif %}
{% if order.grouped_order.place %}<br>Lieu : {{ order.grouped_order.place }}{% endif %}
</p>
<p><strong>Une question sur cette commande groupée ?</strong><br>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>
<div class="buttons">
<a class="button" href="{{ base_url }}{% url 'order:grouped_order_detail' order.grouped_order.code %}">Voir la page de commande</a>
</div>
{% endblock %}