aboutsummaryrefslogtreecommitdiffstats
path: root/pyblackbird_cc
diff options
context:
space:
mode:
Diffstat (limited to 'pyblackbird_cc')
-rw-r--r--pyblackbird_cc/resources/views.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/pyblackbird_cc/resources/views.py b/pyblackbird_cc/resources/views.py
index 2bcb9c2..8eea5b3 100644
--- a/pyblackbird_cc/resources/views.py
+++ b/pyblackbird_cc/resources/views.py
@@ -114,7 +114,6 @@ def index(request):
resource_list = [_extract_metadata_from_resource(r) for r in resource_objs]
# featured_resources = Resource.objects.filter(feature_slot__gt=0).all()
featured_resources = [r for r in resource_list if r.feature_slot]
- breakpoint()
featured_resources = sorted(featured_resources, key=lambda resource: resource.feature_slot)
context = {"resource_list": resource_list, "featured_resources": featured_resources}
return render(request, "resources/resource_list.html", context)