{{ task.desc }}
status of task is {{task.status}}
{% if assigned_users %}
Users working on this task:
{% for user in assigned_users %}
{{user.username}}|
{% endfor %}
{% endif %}
{%if can_assign_credits%}
Assign credits
{%endif%}
{% if not is_guest %}
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 %}