{% extends "base.html" %}
{% load staticfiles %}
{% block title %}任务列表{% endblock %}
{% block staticcss %}
{% endblock %}
{% block staticjs %}
{% endblock %}
{% block content %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
ID |
用户 |
本周分配任务数 |
{% for list in CreateNum %}
{{ forloop.counter }} |
{{ list.username }} |
{{ list.task_num }} |
{% endfor %}
ID |
用户 |
本周完成数 |
{% for list in ComNum %}
{{ forloop.counter }} |
{{ list.username }} |
{{ list.task_num }} |
{% endfor %}
{% endblock %}