{% extends 'todo_main/common/header.html' %} {% load staticfiles %} {% block main %}
마감이 지난 일정! {{ over_end_day }}
마감이 가까운 일정! {{ close_end_day }}

기한 있는 일정


{% for list in todo_list_endDate_non_complete %}
{{list.title}}

{{list.end_date}}

{% endfor %}

기한 없는 일정


{% with end_date="마감일 없음" %} {% for list in todo_list_no_endDate %}
{{list.title}}

{{end_date}}

{% endfor %} {% endwith %}

마감 된 일정


{% for list in todo_list_endDate_complete %}
{{list.title}}

{{list.end_date}}

{% endfor %}
{% endblock main %}