lab-2/templates/admin.html

46 lines
1.3 KiB
HTML

{% extends "base.html" %}
{% block content %}
<div class="toolbar">
<h1 class="title-reset">Панель администратора</h1>
<form method="POST" action="/logout">
<button class="btn btn-ghost" type="submit">Выйти</button>
</form>
</div>
<table>
<tr>
<th>ID</th>
<th>Клиент</th>
<th>Телефон</th>
<th>Адрес</th>
<th>Комментарий</th>
<th>Заказ</th>
<th>Сумма</th>
<th>Статус</th>
<th>Действие</th>
</tr>
{% for order in orders %}
<tr>
<td>{{ order.id }}</td>
<td>{{ order.customer_name }}</td>
<td>{{ order.customer_phone }}</td>
<td>{{ order.customer_address }}</td>
<td>{{ order.customer_comment }}</td>
<td>{{ order.order_items }}</td>
<td>{{ order.total_price }} ₽</td>
<td>{{ order.status }}</td>
<td class="status-links">
<form class="status-form" method="POST" action="/update_status/{{ order.id }}">
<select name="status">
<option value="Новый">Новый</option>
<option value="Готовится">Готовится</option>
<option value="Доставка">Доставка</option>
<option value="Выполнен">Выполнен</option>
</select>
<button class="btn btn-ghost" type="submit">Сохранить</button>
</form>
</td>
</tr>
{% endfor %}
</table>
{% endblock %}