{{ task.desc }}
status of task is {{task.status}}
{% 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 %}
Assign credits
{% endif %}
{% if not is_guest and task_claimable %}
View claims
{% endif %}
{% 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 %}
Add comment:
{% endif %}
{% else %}
You are not authorised to view this task. click here to return to browsing the tasks.
{% endif %}
{% endblock %}