diff options
Diffstat (limited to 'pgcommitfest/commitfest/reports.py')
-rw-r--r-- | pgcommitfest/commitfest/reports.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pgcommitfest/commitfest/reports.py b/pgcommitfest/commitfest/reports.py index 20be18f..795e8ca 100644 --- a/pgcommitfest/commitfest/reports.py +++ b/pgcommitfest/commitfest/reports.py @@ -1,5 +1,6 @@ from django.shortcuts import render_to_response, get_object_or_404 from django.http import Http404 +from django.template import RequestContext from django.contrib.auth.decorators import login_required from django.db import connection @@ -42,4 +43,4 @@ ORDER BY last_name, first_name 'report': cursor.fetchall(), 'title': 'Author stats', 'breadcrumbs': [{'title': cf.title, 'href': '/%s/' % cf.pk},], - }) + }, context_instance=RequestContext(request)) |