Skip to content
Snippets Groups Projects
Commit 73792b2d authored by Aqeel Rehman's avatar Aqeel Rehman
Browse files

Upload New File

parent c1bc6f3b
Branches
No related tags found
No related merge requests found
{% extends "base.html" %}
{% block content %}
<div id="basket-content-div">
<h1>My Basket</h1>
<div class="basket-flex">
{% for product in purchased_list %}
<div class="basket-card">
{% include 'basketItem.html' %}
</div>
{% endfor %}
</div>
<h2 id="basket-total">Total: £{{ "{:.2f}".format(total_cost) }}</h2>
{% if total_cost != 0 %}
<a href="/checkout"><button id="basket-2-checkout-button">Go to checkout</button></a>
{% endif %}
</div>
{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment