{% extends "gw/task/todocat_base.html" %} {% block body_main %}

Категория: {{ item.name }}


Задачи:   +  

{% for i in item.todo_set.all %} {% endfor %}
# Тема Создано Срок Состояние
{{ forloop.counter }} {{ i.subject }} {{ i.created|date }} {% if i.deadline %} {{ i.deadline }} {% endif %} {%if i.done %} √ {% endif %}   E     X   {% if not i.done %}   √   {% endif %}
{% endblock %}