aboutsummaryrefslogtreecommitdiffstats
path: root/pyblackbird_cc/payments
diff options
context:
space:
mode:
Diffstat (limited to 'pyblackbird_cc/payments')
-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):