{% extends "base.html" %} {% load staticfiles %} {% block title %}任务列表{% endblock %} {% block staticcss %} {% endblock %} {% block staticjs %} {% endblock %} {% block content %}
{% if messages %} {% endif %}

任务统计

本周创建任务统计
{% for list in CreateNum %} {% endfor %}
ID 用户 本周分配任务数
{{ forloop.counter }} {{ list.username }} {{ list.task_num }}
本周完成任务统计
{% for list in ComNum %} {% endfor %}
ID 用户 本周完成数
{{ forloop.counter }} {{ list.username }} {{ list.task_num }}
{% endblock %}