{% load static %} {% load i18n %}{% load horillafilters %} {% load basefilters %} {% comment %} for showing messages {% endcomment %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% include "filter_tags.html" %} {% comment %} easy filters {% endcomment %}
{% trans "New" %} {% trans "In progress" %} {% trans "Completed" %} {% trans "On Hold" %} {% trans "Cancelled" %} {% trans "Expired" %}
{% comment %} kanban view {% endcomment %} {% if projects %}
{% for project in projects %}
{% comment %} url link {% endcomment %} {% comment %} placing image {% endcomment %}
{% if project.image %} Username {% else %} Username {% endif %}
{{project.title}} {% trans "Project manager" %} : {{project.manager}}
{% trans "Status" %}: {{project.get_status_display}}
{% trans "End date" %} : {{project.end_date}}
{{ project.task_set.all|length}}
{% comment %} dropdown {% endcomment %}
{% comment %} dropdown menu {% endcomment %}
{% endfor %}
{% comment %} pagination {% endcomment %}
{% trans "Page" %} {{ projects.number }} {% trans "of" %} {{ projects.paginator.num_pages }}.
{% comment %} {% endcomment %} {% else %}
Page not found. 404.

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

{% endif %} {% comment %} js scripts {% endcomment %}