{% extends 'base.html' %} {% load static tags %} {% block content %}
{% include 'breadcrumb.html' %}
{% csrf_token %}
{% for filter in filters %} {% if filter.type == 'text' %}
{% elif filter.type == 'select' %}
{% elif filter.type == 'date' %}
{% elif filter.type == 'month' %}
{% endif %} {% endfor %}
{% render_button 'modify_records_button' %} {% render_button 'add_button' %} {% render_button 'report_excel_button' %} {# {% render_button 'import_excel_button' %}#}
{% get_verbose_field_names_from_model model_config table_exclude_field_name as columns %} {% for column in columns %} {% endfor %} {% for item in items %} {% for field in item|get_fields:table_exclude_field_name %} {% endfor %} {% empty %} {% endfor %}
{{ column }}操作
{{ field.value }} 编辑 删除
暂无数据
{% include 'pagination_ps.html' with page_obj=items query_params=query_params %}
{% include 'modify_record_modal.html' with modify_records_url=modify_records_url %} {% block item_list_custom_content %} {% endblock %} {% endblock %}