first commit

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
shop
2026-05-16 20:52:15 +03:00
parent 3419d90e61
commit 323e0a2926
67 changed files with 1723 additions and 3077 deletions
+54
View File
@@ -0,0 +1,54 @@
<%- include('partials/layout-start') %>
<h1>Корзина</h1>
<% if (error) { %><p class="alert alert--error"><%= error %></p><% } %>
<% if (!items.length) { %>
<p class="empty">Корзина пуста. <a href="/">Перейти в каталог</a></p>
<% } else { %>
<form action="/cart/update" method="post" class="cart-table-wrap">
<table class="cart-table">
<thead>
<tr>
<th>Товар</th>
<th>Цена</th>
<th>Кол-во</th>
<th>Сумма</th>
<th></th>
</tr>
</thead>
<tbody>
<% items.forEach(item => { %>
<tr>
<td class="cart-table__product">
<% if (item.image_url) { %>
<img src="<%= item.image_url %>" alt="" class="cart-table__thumb">
<% } %>
<a href="/product/<%= item.slug %>"><%= item.name %></a>
</td>
<td><%= formatPrice(item.price_cents) %></td>
<td>
<input type="number" name="items[<%= item.id %>]" value="<%= item.quantity %>" min="0" max="<%= item.stock %>" class="input input--qty">
</td>
<td><%= formatPrice(item.line_total) %></td>
<td>
<button type="submit" formaction="/cart/remove/<%= item.id %>" formmethod="post" class="btn btn--ghost btn--sm" title="Удалить">×</button>
</td>
</tr>
<% }) %>
</tbody>
</table>
<div class="cart-actions">
<button type="submit" class="btn btn--ghost">Обновить</button>
<p class="cart-total">Итого: <strong><%= formatPrice(total) %></strong></p>
<% if (user) { %>
<a href="/checkout" class="btn btn--primary btn--lg">Оформить заказ</a>
<% } else { %>
<p class="hint"><a href="/login?next=/checkout">Войдите</a>, чтобы оформить заказ.</p>
<% } %>
</div>
</form>
<% } %>
<%- include('partials/layout-end') %>