{% extends 'base.html' %}
{% block content %}
{% if claims %}
List of all the claims for the task {{task.title}}
{% for claim in claims %}
{{claim.user.username}} at {{claim.creation_datetime.ctime}} wrote:
{{claim.message}}
{% endfor %}
{% else %}
{% if task_claimable%}
There are no claims for this task yet.
{% else %}
This task cannot be claimed right now.
{% endif %}
Click here to return to the task.
{% endif %}
{% if task_claimed and is_mentor %}
Select a user to assign the work.
{% endif %}
{% if user_can_claim %}
{% if errors %}
{% for error in errors %}
{{error}}
{% endfor %}
{% endif %}
Claim the task:
{% endif %}
{% endblock %}