aboutsummaryrefslogtreecommitdiffstats
path: root/pyblackbird_cc/payments/views.py
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-09-19 21:02:59 +0100
committerMatthew Lemon <y@yulqen.org>2024-09-19 21:02:59 +0100
commitc121648619c674aaf70cf1efb41ede6f2fe8429c (patch)
tree5da07012f616bd53c73ffcf91ae52d8033d44b73 /pyblackbird_cc/payments/views.py
parent51bbea4361d4fafe93997ed0f3dae05be8389c96 (diff)
Looking crap but getting there - the basket...
Diffstat (limited to 'pyblackbird_cc/payments/views.py')
-rw-r--r--pyblackbird_cc/payments/views.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/pyblackbird_cc/payments/views.py b/pyblackbird_cc/payments/views.py
index 28ad10d..01400bb 100644
--- a/pyblackbird_cc/payments/views.py
+++ b/pyblackbird_cc/payments/views.py
@@ -69,9 +69,6 @@ def add_to_cart(request, resource_id):
@login_required
def cart_detail(request):
cart, created = ShoppingCart.objects.get_or_create(user=request.user)
- # TODO Here we need to iterate over cart_items and extract metadata
- # for each one so that we can access thumbnails in the template
- #resource_metadata = _extract_metadata_from_resource(resource_obj)
return render(request, "payments/cart_detail.html", {"cart": cart})
# def cart_detail(request):