blob: 1867f1a70361307c230fb05bbc5ad2115c2125df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{% extends "base.html" %}
{% load static %}
{% block content %}
<div class="container my-5">
<h1 class="mb-4">My basket</h1>
{% if cart %}
<div class="my-5 bg-secondary-subtle border border-1 rounded border-dark">
<div class="my-4 bg-white rounded">
<table class="table">
<thead>
<tr>
<th>Product</th>
<th>Price</th>
<th>Quantity</th>
<th>Total</th>
</tr>
</thead>
<tbody>
{% for item in cart_items %}
<tr>
<td>{{ item.product.name }}</td>
<td>${{ item.product.price }}</td>
<td>{{ item.quantity }}</td>
<td>${{ item.total }}</td>
</tr>
{% endfor %}
</tbody>
<tfoot>
<tr>
<th colspan="3" class="text-end">Total:</th>
<th>${{ cart_total }}</th>
</tr>
</tfoot>
</table>
</div>
</div>
<div class="d-flex justify-content-end">
<a href="#" class="btn btn-primary">Checkout</a>
</div>
{% else %}
<p>Your cart is empty.</p>
{% endif %}
</div>
{% endblock %}
|