{% load static %} {% load i18n %} {% comment %} for showing messages {% endcomment %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% include "filter_tags.html" %} {% if stages %} {% comment %} vertical tabs {% endcomment %}
{% comment %} stages view {% endcomment %} {% for stage in stages %}
{{stage.title}}
{{ stage.tasks.all|length}}
{% comment %} drop down menu {% endcomment %}
{% comment %} task inside stage {% endcomment %}
{% for task in stage.tasks.all|dictsort:"sequence" %} {% if task in tasks %}
task
{{task}} {{task.task_manager}}
{{task.end_date}}
{{task.get_status_display}}
{% comment %} drop down inside card {% endcomment %}
{% endif %} {% endfor %}
{% endfor %} {% comment %} {% trans "Stage" %} {% endcomment %}
{% else %}
Page not found. 404.

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

{% endif %} {% comment %} js files {% endcomment %}