From cbbda88850123edda2b697e585a26ffac537541d Mon Sep 17 00:00:00 2001 From: Commander1024 Date: Thu, 24 Dec 2020 15:13:40 +0100 Subject: [PATCH] Remove debug output. --- django_lostplaces/lostplaces/views/explorer_views.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/django_lostplaces/lostplaces/views/explorer_views.py b/django_lostplaces/lostplaces/views/explorer_views.py index 3fee7d3..0197faa 100644 --- a/django_lostplaces/lostplaces/views/explorer_views.py +++ b/django_lostplaces/lostplaces/views/explorer_views.py @@ -33,13 +33,9 @@ class ExplorerProfileView(IsAuthenticatedMixin, View): asset_count += objects.count() context['asset_count'] = asset_count - - print(context['assets']) - + return render( request=request, template_name='explorer/profile.html', context=context ) - - \ No newline at end of file