aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/templates/payments/cart_lineitem.html
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-10-20 20:28:09 +0100
committerMatthew Lemon <y@yulqen.org>2024-10-20 20:28:09 +0100
commite063a30a06caef9e4cda7afb5ef175b1c04b5e96 (patch)
tree2f37118c780144df0b089f82d33f003a7df191be /alphabetlearning/templates/payments/cart_lineitem.html
parenta5942c7f240686146c243e22d849db97d0a904b9 (diff)
Can now delete item from basket
- if is only one item left, it is deleted along with the basket - if there are more than one, just that one is deleted - TODO needs proper handling of the confirmation page - it's not formatted. htmx?
Diffstat (limited to 'alphabetlearning/templates/payments/cart_lineitem.html')
-rw-r--r--alphabetlearning/templates/payments/cart_lineitem.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/alphabetlearning/templates/payments/cart_lineitem.html b/alphabetlearning/templates/payments/cart_lineitem.html
index 79899df..9524d96 100644
--- a/alphabetlearning/templates/payments/cart_lineitem.html
+++ b/alphabetlearning/templates/payments/cart_lineitem.html
@@ -12,7 +12,7 @@
</div>
<div class="p-2">
<p>{{ item.resource.card_description }}</p>
- <p><a class="btn btn-danger btn-sm fs-6 text" href="#">Remove from basket</a></p>
+ <p><a class="btn btn-danger btn-sm fs-6 text" href="{% url "payments:delete_cart_item" item.pk %}">Remove from basket</a></p>
</div>
</div>
</div>