diff -r 4da58abdf6ff -r f2623fb8041a pytask/templates/task/view.html
--- a/pytask/templates/task/view.html Sat Jan 30 13:10:11 2010 +0530
+++ b/pytask/templates/task/view.html Mon Feb 01 11:10:29 2010 +0530
@@ -7,8 +7,20 @@
{{ task.title }}
created by {{ task.created_by.username }} on {{ task.creation_datetime.ctime }}
+ Mentors:
+ {% for mentor in mentors %}
+ {{mentor.username}}|
+ {% endfor %}
+ {% if is_mentor %}
+
Add another Mentor to this task
+ edit task goes here and it should contain all those add subs and add deps depending on availability
+ {% endif %}
+
Description:
{{ task.desc }}
+
+ status of task is {{task.status}}
+ view claims goes here depending on availability of claim
{% if comments %}
comments:
{% for comment in comments %}
@@ -16,7 +28,7 @@
{{ comment.data }}
{% endfor %}
{% endif %}
-
+
{% if not is_guest %}
Add comment: