{% 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 %}
{% show_modify_records_button model_config %}
{% 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 %} {% include 'delete_modal.html' with delete_url=delete_url %} {% include 'upload_excel_modal_v2.html' with excel_upload_config=excel_upload_config %} {% endblock %}