{% load static %} {% load i18n %} {% load horillafilters %} {% comment %} for showing messages {% endcomment %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% include "filter_tags.html" %}
{% if projects %}
{% comment %} easy filters {% endcomment %}
{% trans "New" %} {% trans "In progress" %} {% trans "Completed" %} {% trans "On Hold" %} {% trans "Cancelled" %} {% trans "Expired" %}
{% trans "Project" %}
{% trans "Project Manager" %}
{% trans "Project Members" %}
{% trans "Status" %}
{% trans "Start Date" %}
{% trans "End Date" %}
{% trans "File" %}
{% trans "Description" %}
{% for project in projects %}
{{project.title}}
{{project.manager}}
{% for employee in project.members.all %} {{employee}}
{% endfor %}
{{project.get_status_display}}
{{project.start_date}}
{% if project.end_date %}{{project.end_date}}{% endif %}
{% if project.document %}document{% endif %}
{{project.description}}
{% endfor %} {% else %}
Page not found. 404.

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

{% endif %}
{% comment %}
{% trans "Page" %} {{ allowances.number }} {% trans "of" %} {{ allowances.paginator.num_pages }}.
{% endcomment %}
{% comment %} js scripts {% endcomment %}