diff -r a14ec2f09beb -r 9fc60a221016 templates/task/view.html --- a/templates/task/view.html Wed Feb 24 15:10:03 2010 +0530 +++ b/templates/task/view.html Wed Feb 24 16:08:31 2010 +0530 @@ -17,7 +17,7 @@ edit task goes here and it should contain all those add subs and add deps depending on availability
{% endif %} - {% if deps %} + {% if deps %}
The task has following dependencies {% for dep in deps %} {{dep.title}}
@@ -27,9 +27,9 @@ remove an existing dependency {% endif %} {% else %} - {%if can_mod_tasks %} + {% if can_mod_tasks %} add a subtask/dependency - {%endif%} + {% endif %} {% endif %}
@@ -43,12 +43,15 @@ {% for user in assigned_users %} {{user.username}}| {% endfor %} + {% if is_mentor %} + Remove an existing user
+ {% endif %} {% endif %} - {%if can_assign_credits%} + {% if can_assign_credits %} Assign credits - {%endif%} - {% if not is_guest %} + {% endif %} + {% if not is_guest and task_claimable %} View claims
{% endif %}