diff options
author | Matthew Lemon <y@yulqen.org> | 2024-10-20 20:28:09 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-10-20 20:28:09 +0100 |
commit | e063a30a06caef9e4cda7afb5ef175b1c04b5e96 (patch) | |
tree | 2f37118c780144df0b089f82d33f003a7df191be /alphabetlearning/resources/views.py | |
parent | a5942c7f240686146c243e22d849db97d0a904b9 (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/resources/views.py')
-rw-r--r-- | alphabetlearning/resources/views.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/alphabetlearning/resources/views.py b/alphabetlearning/resources/views.py index 0aae929..c3d1bcd 100644 --- a/alphabetlearning/resources/views.py +++ b/alphabetlearning/resources/views.py @@ -129,7 +129,6 @@ def index(request): resource_list = [_extract_metadata_from_resource(r) for r in resource_objs] for r in resource_list: - # TODO test for this existing - it will fail if no cart try: cart_items = request.user.shoppingcart.items.all() if r.name in [r.resource.name for r in cart_items]: |