{{ task.desc }}
{% ifnotequal task.status "CM" %}
{% if assigned_users %}
Users working on this task:
{% for user in assigned_users %}
{{user.username}}|
{% endfor %}
{% if is_mentor %}
Remove an existing user
{% endif %}
{% else %}
There are no users currently working on this task.
{% endif %}
{% if can_assign_credits %}
View/Assign credits
{% endif %}
{% if not is_guest and task_claimable %}
View claims
{% endif %}
{% else %}
{% ifequal task.status "CD" %}
The task has been closed by .. due to ..
{% else %}
The task is complete.
{% endifequal %}
{% endifnotequal %}
{% if comments %}
comments:
{% for comment in comments %}
{{ comment.created_by.username }} at {{ comment.creation_datetime.ctime }} wrote:
{{ comment.data }}
{% endfor %}
{% endif %}
{% if not is_guest %}
{% ifnotequal task.status "CM" %}
Add comment:
{% endifnotequal %}
{% endif %}
{% else %}
You are not authorised to view this task. click here to return to browsing the tasks.
{% endif %}
{% endblock %}