{% extends "todo.html" %} {% load todo_extras %} {% block extra_media %} {% include "extra_css.html" %} {% endblock %} {% block title %}Задачи{% endblock %} {% block left %}
Входящие
Исходящие
Все {% endblock %} {% block content %}

{% ifequal folder 'inbox' %}Мои задачи{% endifequal %} {% ifequal folder 'outbox' %}Задачи, назначенные мной{% endifequal %} {% ifequal folder 'all' %}Все задачи{% endifequal %} {% if project %} по проекту {{project.title}}{% endif %}

{% if filter_on %} фильтр {% else %} применить фильтр... {% endif %} {% include "todo/task_filter.html" %}
Добавить задачу
{% if not project %} Проект{% ifequal order 'project'%}{% ifequal dir 'asc'%}↑{% else %}↓{% endifequal%}{% endifequal%} {% endif %} Назначил{% ifequal order 'author'%}{% ifequal dir 'asc'%}↑{% else %}↓{% endifequal%}{% endifequal%} Выполняет{% ifequal order 'assigned_to'%}{% ifequal dir 'asc'%}↑{% else %}↓{% endifequal%}{% endifequal%} Срок{% ifequal order 'deadline'%}{% ifequal dir 'asc'%}↑{% else %}↓{% endifequal%}{% endifequal%}  {% if tasks %} {% for t in tasks %} {% if not project %}{% endif %} {% endfor %} {% else %} {% endif %}
Задача{% ifequal order 'task'%}{% ifequal dir 'asc'%}↑{% else %}↓{% endifequal%}{% endifequal%}Дата{% ifequal order 'created_at'%}{% ifequal dir 'asc'%}↑{% else %}↓{% endifequal%}{% endifequal%}{% if not order %}↓{% endif %}  Статус{% ifequal order 'status'%}{% ifequal dir 'asc'%}↑{% else %}↓{% endifequal%}{% endifequal%}
{{t.title}} {% if t.comments.count %}({{ t.comments.count }}){% endif %}  {% if t.files.count %}{% endif %}{{t.project.title}}{{t.author|username}} {{t.created_at|format_date:"short"}} {{t.assigned_to|username|default:" "}} {{ t.deadline }}
{% ifequal t.status.id 4 %}завершена{% else %}{{t.status.title|lower}}{% endifequal %}
 


Нет задач, соответствующих выбранным параметрам.
 
{% endblock %} {% block bottom %} {% endblock %}