diff --git a/app/api/views.py b/app/api/views.py index a334edb..96a5e09 100644 --- a/app/api/views.py +++ b/app/api/views.py @@ -9,7 +9,7 @@ from piston.models import Token @login_required def oauth_callback_view(request, token): - return render_to_response('piston/callback_view.html', {'token': token }) + return render_to_response('piston/callback_view.html', {'token': token }, context_instance=RequestContext(request)) @login_required