{% if task.tags.count %}
Tags: {% as_tags task.tags %}
{% endif %}
{% if selected_users %}
Users working on this task:
{% for user in selected_users %}
{{user.username}}
{% endfor %}
{% endif %}
{% if task_claimable %}
View claims
{% endif %}
View submitted work reports
{% if comments %}
comments:
{% for comment in comments %}
{{ comment.commented_by.username }}
on {{ comment.comment_datetime|date:"D d M Y"}} at
{{comment.comment_datetime|time:"H:i"}} wrote:
{{ comment.data|linebreaksbr }}
{% endfor %}
{% endif %}
{% if can_comment %}
Add comment:
{% as_div_form form "Comment Form" csrf_token "Submit" %}
{% endif %}
{% endblock %}