From 1d6eede612130ae0bb6ea4fa03f60fc71ecbbe3d Mon Sep 17 00:00:00 2001 From: mahesh Date: Thu, 21 Apr 2016 18:34:46 +0530 Subject: changes in context --- commentingapp/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'commentingapp') 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") -- cgit