23 lines
690 B
HTML
23 lines
690 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1>Корзина</h1>
|
|
<p class="subtitle">Проверьте состав заказа перед оформлением.</p>
|
|
{% if not items %}
|
|
<p class="message">Корзина пока пустая.</p>
|
|
{% endif %}
|
|
<ul class="list">
|
|
{% for item in items %}
|
|
<li>
|
|
<strong>{{ item.name }} · {{ item.price }} ₽</strong>
|
|
<form method="POST" action="/remove_from_cart/{{ item.id }}">
|
|
<button class="btn btn-ghost" type="submit">Удалить</button>
|
|
</form>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<div class="toolbar">
|
|
<h3>Итого: {{ total }} ₽</h3>
|
|
<a class="btn" href="/order">Оформить заказ</a>
|
|
</div>
|
|
{% endblock %}
|