mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-01 11:22:24 +02:00
change some icons
This commit is contained in:
parent
04846caa0e
commit
b9de21235e
3 changed files with 6 additions and 4 deletions
|
@ -22,10 +22,10 @@
|
|||
{% if grouped_order.place %}
|
||||
<p><i class="fa fa-map-pin mr-3" aria-label="Lieu" title="Lieu" aria-hidden="true"></i>{{ grouped_order.place }}</p>
|
||||
{% endif %}
|
||||
<p><i class="fa fa-clock-o mr-3" aria-label="Date limite de commande" title="Date limite de commande" aria-hidden="true"></i>
|
||||
<p><i class="fa fa-calendar-check-o mr-3" aria-label="Date limite de commande" title="Date limite de commande" aria-hidden="true"></i>
|
||||
Commandes avant le {{ grouped_order.deadline }}
|
||||
</p>
|
||||
<p><i class="fa fa-calendar-check-o mr-3" aria-label="Date de livraison" title="Date de livraison" aria-hidden="true"></i>
|
||||
<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 }}
|
||||
</p>
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@
|
|||
|
||||
<div class="box">
|
||||
<a class="button is-primary is-pulled-right" href="{% url 'order:manage_items' grouped_order.pk %}">
|
||||
<i class="fa fa-leaf mr-3" aria-hidden="true"></i>Gérer les produits
|
||||
<i class="fa fa-list-ul mr-3" aria-hidden="true"></i>Gérer les produits
|
||||
</a>
|
||||
<p class="title">Produits commandés</p>
|
||||
{% if grouped_order.item_set.all %}
|
||||
|
|
|
@ -7,7 +7,9 @@
|
|||
{% block content_title %}Commandes groupées que vous organisez{% endblock %}
|
||||
</p>
|
||||
<div class="buttons is-pulled-right">
|
||||
<a class="button is-primary" href="{% url 'order:create_grouped_order' %}">Créer une nouvelle commande groupée</a>
|
||||
<a class="button is-primary" href="{% url 'order:create_grouped_order' %}">
|
||||
<i class="fa fa-plus-circle mr-3" aria-hidden="true"></i>
|
||||
Créer une nouvelle commande groupée</a>
|
||||
</div>
|
||||
{% if grouped_order_list.incoming_grouped_orders or grouped_order_list.crossed_deadline_grouped_orders or grouped_order_list.old_grouped_orders %}
|
||||
{% if grouped_order_list.incoming_grouped_orders %}
|
||||
|
|
Loading…
Reference in a new issue