{% extends "base.html" %} {% block title %}Заказы — ЧитайГород{% endblock %} {% block page_title %}Заказы{% endblock %} {% block extra_css %} {% endblock %} {% block content %} {% if filterset %}
| Номер | Статус | Дата заказа | Дата доставки | Пункт выдачи | Клиент | Код | |
|---|---|---|---|---|---|---|---|
| {{ order.number }} | {{ order.status }} | {{ order.order_date }} | {{ order.delivery_date }} | {{ order.pickup_point.address }} | {{ order.user.first_name }} | {{ order.code }} | Подробнее {% if user.role == "Администратор" %} | Изменить | Удалить {% endif %} |
Заказы не найдены.
{% endif %} {% endblock %}