{% if task.tags.count %}
Tags:
{% for tag in task.tags %}
{{tag}}
{% endfor %}
{% endif %}
{% if selected_users %}
Users working on this task:
{% for user in selected_users %}
{{user.username}}
{% endfor %}
{% endif %}
{% if task_claimable %}
View claims
{% endif %}
{% if can_assign_pynts %}
Request assign pynts and mark the task as complete
{% endif %}
{% if is_selected %}
Submit Work
{% endif %}
{% 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:
{% endif %}
{% endblock %}