{% extends 'base.html' %} {% block content %} 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 %} {% if task_claimable and is_mentor %} Assign task {% endif %} {% if user_can_claim %}
{% if errors %} {% for error in errors %} {{error}}
{% endfor %} {% endif %} Claim the task:

{% endif %} {% endblock %}