{% if can_edit %}
Edit task
{% endif %}
{% if can_approve %}
Approve task
{% endif %}
{% if can_close %}
Close task
{% endif %}
created by {{ task.created_by.username }}
on {{task.creation_datetime|date:"D d M Y"}} at {{task.creation_datetime|time:"H:i"}}
{% if reviewers %}
Reviewers:
{% for reviewer in reviewers %}
{{reviewer.username}}
{% endfor %}
{% endif %}
{% if can_mod_reviewers %}
Add a Reviewer to this task
{% endif %}
Description:
{{ task.desc|linebreaksbr }}
{% 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 %}