{% load i18n %} {% load static %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% include "filter_tags.html" %} {% if tasks %}
{% comment %} easy filters {% endcomment %}
{% trans "To Do" %} {% trans "In progress" %} {% trans "Completed" %} {% trans "Expired" %}
{% trans "Task" %}
{% trans "Project" %}
{% trans "Stage" %}
{% trans "Mangers" %}
{% trans "Members" %}
{% trans "End Date" %}
{% trans "Status" %}
{% trans "Description" %}
{% comment %}
{% endcomment %}
{% for task in tasks %}
{{task.title}}
{{task.project}} {{task.stage}} {{task.task_manager}} {% for member in task.task_members.all %} {{member}}, {% endfor %} {{task.end_date}} {{task.get_status_display}} {{task.description}} {% comment %} {% if perms.recruitment.view_history %} {% endif %} {% endcomment %}
{% comment %} {% if perms.recruitment.change_candidate %} {% endcomment %} {% comment %} {% endif %} {% endcomment %} {% comment %} {% if perms.recruitment.delete_candidate %} {% endcomment %}
{% csrf_token %}
{% comment %} {% endif %} {% endcomment %}
{% endfor %}
{% comment %} pagination {% endcomment %}
{% trans "Page" %} {{ data.number }} {% trans "of" %} {{ data.paginator.num_pages }}.
{% else %}
Page not found. 404.

{% trans "There are currently no available tasks; please create a new one." %}

{% endif %}