{% extends 'core/base.html' %} {% block content %}

家庭事项

添加家庭事项
家庭事项列表
{% if tasks %} {% for task in tasks %} {% endfor %}
类型 内容 优先级 状态 截止日期 操作
{{ task.get_type_display }} {{ task.content }} {{ task.get_priority_display }} {{ task.get_status_display }} {{ task.deadline|default:"-" }}
{% else %}

还没有家庭事项,点击上方按钮添加

{% endif %}
{% endblock %}