diff options
author | mahesh | 2016-04-26 16:06:15 +0530 |
---|---|---|
committer | mahesh | 2016-04-26 16:06:15 +0530 |
commit | 1d1516a85d60a8cb3baa0467bd7b4fc2b6da0c7f (patch) | |
tree | aa7b6e1ff5bd6fd29b513662fe039940e65f1d9c | |
parent | d94b8a9d73de440142d24535bcafd910613e9f70 (diff) | |
download | Python-TBC-Interface-1d1516a85d60a8cb3baa0467bd7b4fc2b6da0c7f.tar.gz Python-TBC-Interface-1d1516a85d60a8cb3baa0467bd7b4fc2b6da0c7f.tar.bz2 Python-TBC-Interface-1d1516a85d60a8cb3baa0467bd7b4fc2b6da0c7f.zip |
removed request context in admin_tools
-rwxr-xr-x | tbc/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tbc/views.py b/tbc/views.py index 7ca634b..1344b9f 100755 --- a/tbc/views.py +++ b/tbc/views.py @@ -1431,4 +1431,4 @@ def admin_tools(request): raise Http404("You are not allowed to view this page") else: context["reviewer"] = curr_user - return render_to_response('tbc/admin-tools.html', context, ci) + return render_to_response('tbc/admin-tools.html', context) |