made the home page look clean.
--- a/taskapp/views/user.py Tue Mar 02 03:21:20 2010 +0530
+++ b/taskapp/views/user.py Tue Mar 02 03:55:38 2010 +0530
@@ -46,7 +46,7 @@
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 @@
}
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)
--- a/templates/index.html Tue Mar 02 03:21:20 2010 +0530
+++ b/templates/index.html Tue Mar 02 03:55:38 2010 +0530
@@ -9,27 +9,46 @@
<a href="/task/view/tid={{ task.id }}">{{ task.title }}</a><br />
{% endfor %}
{% else %}
- Logged in as {{ user.username }} <br />
+ Logged in as {{ user.username }} <br /><br />
+ {% endif %}
+
+ {% if can_create_task %}
+ <a href="/task/create/">Create a task</a><br />
{% endif %}
-
+ <br />
+ {% ifequal user.get_profile.rights "MG" %}
+ <a href="/user/make/dv/">Request another user to be a Developer</a><br />
+ <a href="/user/make/mg/">Request another user to act as manager</a><br />
+ {% endifequal %}
+ {% ifequal user.get_profile.rights "AD" %}
+ <a href="/user/make/dv/">Request another user to be a Developer</a><br />
+ <a href="/user/make/mg/">Request another user to act as a Manager</a><br />
+ <a href="/user/make/ad">Request another user to act as an Admin</a><br />
+ {% endifequal %}
+ <br />
+
{% if user.unread_notifications.count %}
You have {{ user.unread_notifications.count }} <a href='/user/notifications/'>unread</a>
{% ifnotequal user.unread_notifications.count 1 %}
notifications
{% else %}
notification
- {% endifnotequal %}<br />
+ {% endifnotequal %}
+ <br />
{% endif %}
-
+
{% if user.unread_requests.count %}
- You have {{ user.unread_requests.count }} <a href='/user/requests/'>unreplied</a>
+ You have {{ user.unread_requests.count }} <a href='/user/requests/'>unread</a>
{% ifnotequal user.unread_requests.count 1 %}
requests
{% else %}
request
- {% endifnotequal %}<br />
+ {% endifnotequal %}
+ <br />
{% endif %}
+ <br />
+<!--
{% if user.task_claimed_users.count %}
{{ user.task_claimed_users.count }} <a href='/user/claimed/'>claimed</a>
{% ifnotequal user.task_claimed_users.count 1 %}
@@ -58,24 +77,38 @@
<br />
{% endif %}
+ -->
+
{% if unpublished_tasks %}
- <br />Unpublished tasks viewable by you:<br />
+ Unpublished tasks viewable by you:<br />
{% for a_task in unpublished_tasks %}
<a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a>
{% endfor %}
+ <br /><br />
{% endif %}
- <br /><br />
- {% if can_create_task %}
- <a href="/task/create/">Create a task</a><br />
+
+ {% if mentored_tasks %}
+ Tasks you are mentoring:<br />
+ {% for a_task in mentored_tasks %}
+ <a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a>
+ {% endfor %}
+ <br /><br >
{% endif %}
- <br />
- {% ifequal user.get_profile.rights "MG" %}
- <a href="/user/make/dv/">Request another user to be a Developer</a><br />
- <a href="/user/make/mg/">Request another user to act as manager</a><br />
- {% endifequal %}
- {% ifequal user.get_profile.rights "AD" %}
- <a href="/user/make/dv/">Request another user to be a Developer</a><br />
- <a href="/user/make/mg/">Request another user to act as a Manager</a><br />
- <a href="/user/make/ad">Request another user to act as an Admin</a><br />
- {% endifequal %}
+
+ {% if working_tasks %}
+ Tasks that have been assigned to you:<br />
+ {% for a_task in working_tasks %}
+ <a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a>
+ {% endfor %}
+ <br /><br />
+ {% endif %}
+
+ {% if claimed_tasks %}
+ Tasks claimed but still not assigned to you:<br />
+ {% for a_task in claimed_tasks %}
+ <a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a>
+ {% endfor %}
+ <br /><br />
+ {% endif %}
+
{% endblock %}