summaryrefslogtreecommitdiff
path: root/taskapp
diff options
context:
space:
mode:
authornishanth2010-03-02 03:55:38 +0530
committernishanth2010-03-02 03:55:38 +0530
commit8b25ebe4a6427c5cf4136d0588037b3de6ffcf39 (patch)
tree34e9010d08583eeab330ac8f1e0145017c2fa6cb /taskapp
parent26c34400dcbf963086e3cc5d812dc7f1333d5cc5 (diff)
downloadpytask-8b25ebe4a6427c5cf4136d0588037b3de6ffcf39.tar.gz
pytask-8b25ebe4a6427c5cf4136d0588037b3de6ffcf39.tar.bz2
pytask-8b25ebe4a6427c5cf4136d0588037b3de6ffcf39.zip
made the home page look clean.
Diffstat (limited to 'taskapp')
-rw-r--r--taskapp/views/user.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/taskapp/views/user.py b/taskapp/views/user.py
index e85b66a..e5ee28b 100644
--- a/taskapp/views/user.py
+++ b/taskapp/views/user.py
@@ -46,7 +46,7 @@ def homepage(request):
if not user.is_authenticated():
is_guest = True
disp_num = 10
- task_list = Task.objects.exclude(status="UP").order_by('published_datetime').reverse()[:10]
+ task_list = Task.objects.exclude(status="UP").exclude(status="CD").exclude("CM").order_by('published_datetime').reverse()[:10]
return render_to_response('index.html', {'user':user, 'is_guest':is_guest, 'task_list':task_list})
else:
@@ -63,6 +63,9 @@ def homepage(request):
}
context["unpublished_tasks"] = user.task_mentors.filter(status="UP")
+ context["mentored_tasks"] = user.task_mentors.exclude(status="UP").exclude(status="CM").exclude(status="CD").exclude(status="DL")
+ context["claimed_tasks"] = user.task_claimed_users.exclude(status="UP").exclude(status="CM").exclude(status="CD").exclude(status="DL")
+ context["working_tasks"] = user.task_assigned_users.filter(status="WR")
return render_to_response('index.html', context)