taskapp/views/user.py
changeset 97 3699550991c6
parent 86 fcbdf372857c
child 100 2275886511df
--- a/taskapp/views/user.py	Thu Feb 25 06:07:55 2010 +0530
+++ b/taskapp/views/user.py	Thu Feb 25 17:33:34 2010 +0530
@@ -38,12 +38,16 @@
         user_profile = user.get_profile()
         is_mentor = True if user.task_mentors.all() else False
         can_create_task = False if user_profile.rights == u"CT" else True
+        notifications = user.notification_to.filter(deleted=False,is_read=False)
+        requests = user.request_sent_to.filter(is_replied=False)
         
         context = {'user':user,
                    'is_guest':is_guest,
                    'is_mentor':is_mentor,
                    'task_list':task_list,
                    'can_create_task':can_create_task,
+                   'notifications':notifications,
+                   'requests':requests,
                    }
                    
         return render_to_response('index.html', context)