{% extends "base.html" %} {% load staticfiles %} {% block title %}项目列表{% endblock %} {% block staticcss %} {% endblock %} {% block staticjs %} {% endblock %} {% block content %}
{% if messages %} {% endif %}
{{ project.name }}
{% if form.errors %} {% for field, error in form.errors.items %}
{{ field }} {{ error }}
{% endfor %} {% endif %}
{% for list in subproject %} {% endfor %}
选择 ID 任务名称 权重 创建人 创建日期 截止日期 分配给 进度 状态 评论 绩效 绩效锁定 操作
{{ forloop.counter }}

{{ list.title|slice:'15' }}

{{ list.get_priority_display }} {{ list.created_by }} {{ list.created_date }} {{ list.due_date }} {{ list.assigned_to }}
{{ list.progress }}
{{ list.get_status_display }} {{ list.itemcomment_set.all.count }} {{ list.per_value }} {% if list.lock %} {% else %} {% endif %} 查看 编辑 删除
{% endblock %}