{% load static %} {% load i18n %} {% load horillafilters taskfilters %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% include "filter_tags.html" %}
{% if request.user|is_project_manager:stages.first.project or request.user.is_superuser %}
{% endif %} {% if stages %}
{% for stage in stages %}
{{ stage.tasks.all|length}} {{stage.title}}
{% if request.user|is_project_manager:stage.project or request.user.is_superuser %}
{% endif %}
{% if stage.tasks.all %}
{% trans "Tasks" %}
{% trans "Task Managers" %}
{% trans "End Date" %}
{% trans "Status" %}
{% trans "Stage" %}
{% trans "Document" %}
{% trans "Description" %}
{% if request.user|is_project_manager:stage.project or request.user.is_superuser %}
{% trans "Actions" %}
{% endif %}
{% for task in stage.tasks.all %} {% if task in tasks %}
{{task.title}}
{% for manager in task.task_managers.all %} {{manager}}, {% endfor %}
{{task.end_date}}
{{task.get_status_display}}
{% if task.document %}   View {% else %} {% trans "None" %} {% endif %}
{{task.description}}
{% if request.user|is_project_manager:stage.project or request.user.is_superuser %} {% endif %}
{% endif %} {% endfor %}
{% else %}
Empty

{% trans "No tasks found in this stage." %}

{% endif %}
{% endfor %}
{% else %}
Page not found. 404.

{% trans "No search result found!" %}

{% endif %}