{% extends "gw/task/todo_base.html" %} {% block head_css %} {% endblock %} {% block head_js %} {% endblock %} {% block body_main %} {# Categories #} {# ToDos #}
{% for item in cat_list %} {% endfor %}
Категории ({{ cat_list.count }}):
U A Наименование
<Все>
{% if item.user %} • {% endif %} {% if item.app %} • {% endif %} {{ item.name }}
{% for i in item_head %} {% endfor %} {% for item in item_list %} {% if not hcol_dict.user %} {% endif %} {% if not hcol_dict.created %} {% endif %} {% if not hcol_dict.updated %} {% endif %} {% if not hcol_dict.summary %} {% endif %} {% if not hcol_dict.status %} {% endif %} {% if not hcol_dict.restriction %} {% endif %} {% if not hcol_dict.categories %} {% endif %} {% if not hcol_dict.attendee %} {% endif %} {% if not hcol_dict.start %} {% endif %} {% if not hcol_dict.duration %} {% endif %} {% if not hcol_dict.priority %} {% endif %} {% if not hcol_dict.due %} {% endif %} {% if not hcol_dict.completed %} {% endif %} {% if not hcol_dict.percent %} {% endif %} {% endfor %}
Задачи ({{ item_list.count }}):
{{ i }}
{{ item.user }} {{ item.created|date }} {{ item.updated|date }} {{ item.summary }} {{ item.getstatusname|default_if_none:"" }} {{ item.getrestrictionname|default_if_none:"" }} {{ item.getcategories|default_if_none:"" }} {{ item.attendee|default_if_none:"" }} {{ item.start_d|date|default_if_none:"" }} {{ item.start_t|default_if_none:"" }} {{ item.duration_d|default_if_none:"" }} {{ item.duration_t|default_if_none:"" }} {{ item.getpriorityname|default_if_none:"" }} {{ item.due_d|default_if_none:""|date }} {{ item.due_t|default_if_none:"" }} {{ item.completed|date|default_if_none:"" }} {{ item.percent|default_if_none:"" }}

Экспорт в iCal

Импорт из iCal

{{ columns_form.as_table }}
{{ sort_form.as_table }}
{{ filter_form.as_table }}
{% endblock %}