summaryrefslogtreecommitdiff
path: root/commentingapp/views.py
diff options
context:
space:
mode:
authormahesh2016-04-21 18:34:46 +0530
committermahesh2016-04-21 18:34:46 +0530
commit1d6eede612130ae0bb6ea4fa03f60fc71ecbbe3d (patch)
tree6aa73ad27571337753edf14131d61d88a796dc71 /commentingapp/views.py
parentf60d22247606b536227f9dc9a3d58d2a2919665d (diff)
downloadPython-TBC-Interface-1d6eede612130ae0bb6ea4fa03f60fc71ecbbe3d.tar.gz
Python-TBC-Interface-1d6eede612130ae0bb6ea4fa03f60fc71ecbbe3d.tar.bz2
Python-TBC-Interface-1d6eede612130ae0bb6ea4fa03f60fc71ecbbe3d.zip
changes in context
Diffstat (limited to 'commentingapp/views.py')
-rw-r--r--commentingapp/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/commentingapp/views.py b/commentingapp/views.py
index a97fc07..22bf0e0 100644
--- a/commentingapp/views.py
+++ b/commentingapp/views.py
@@ -17,7 +17,7 @@ def commenting(request):
raise Http404("You are not allowed to view this page")
else:
url_instance = Url.objects.filter(Q(comments__is_notified = 0)).distinct()
- context = {"url_context": url_instance, "user": curr_user}
+ context = {"url_context": url_instance, "reviewer": curr_user}
if request.method == "POST":
notified_comment_list = request.POST.getlist("comment")