la-chariotte/la_chariotte/order/templates/place/place_overview.html

58 lines
2.3 KiB
HTML

{% extends 'base.html' %}
{% block title %}Commandes groupées à: {{ place.name }}{% endblock %}
{% block content %}
{% if user.is_authenticated %}
<div class="buttons">
<a class="button is-light" href="{% url 'order:place_index' %}">
<i class="fa fa-arrow-left mr-3" aria-hidden="true"></i>Retour aux lieux
</a>
<a class="button is-primary" href="{% url 'order:index' %}">
<i class="fa fa-shopping-basket mr-3" aria-hidden="true"></i>Mes commandes
</a>
</div>
<div>
</div>
{% endif %}
{% if user == place.orga %}
<div class="buttons is-pulled-right">
<a class="button is-primary" href="{% url 'order:place_update' place.code %}">
<i class="fa fa-plus-circle mr-3" aria-hidden="true"></i>
Modifier</a>
</div>
{% endif %}
<p class="desktop-hidden mobile-content-title">
{% block content_title %}{{ place.name }}: Commandes groupées{% endblock %}
</p>
{% if active_orders %}
<p class="title">{{ place.name }} ({{ active_orders | length }} commandes groupées en cours)</p>
{% for order in active_orders %}
<div class="box">
<h4><a href="{% url "order:grouped_order_detail" order.code %}">{{ order.name }}</a> ({{ order.item_set.all|length }} produit{% if order.item_set.all|length > 1 %}s{% endif %})</h4>
<p>
<i class="fa fa-calendar" aria-hidden="true"></i>&nbsp;&nbsp;<i>Fin des commandes</i> le {{ order.deadline }}
<br><i class="fa fa-truck" aria-hidden="true"></i>&nbsp;&nbsp;<i>Livraison</i> le {{ order.delivery_date }}
{% if order.places.all|length > 1 %}
<br><i class="fa fa-building" aria-hidden="true"></i>&nbsp;&nbsp;<i>Autres lieux de livraison:</i>
{% for other_place in order.places.all %}
{% if other_place.code != place.code %}
<a href="{% url 'order:place_overview' other_place.code %}">{{ other_place.name }}</a>
{% if forloop.counter0|add:"2" < order.places.all|length %}, {% endif %}
{% endif %}
{% endfor %}
{% endif %}
</p>
<div class="buttons">
<a class="button is-primary" href="{% url 'order:grouped_order_detail' order.code %}">
<i class="fa fa-shopping-basket mr-3" aria-hidden="true"></i>
Commander</a>
</div>
</div>
{% endfor %}
{% else %}
<p>Aucune commande groupée en cours dans ce lieu.</p>
{% endif %}
{% endblock %}