{% extends "admin/base_site.html" %} {% block title %}传染病防治政策数据报表{% endblock %} {% block extrahead %} {% endblock %} {% block content %}

传染病防治政策数据报表

{% if show_raw_data %}
{% for item in policy_list %} {% endfor %}
ID 类别 文件 年份 发布部门 发布日期 实施日期 传染病类型列表 时效性 效力级别
{{ item.id }} {{ item.category }} {{ item.file_name }} {{ item.year }} {{ item.department }} {{ item.publish_date }} {{ item.implementation_date }} {% for disease_type in item.disease_types.all %} {{ disease_type.name }} {% if not forloop.last %}, {% endif %} {% endfor %} {{ item.timeliness }} {{ item.effectiveness_level }}
{% endif %}
{% if group_by_category %} {% else %} {% endif %}
数据总量:{{ total_count }}
{% endblock %}