{% extends 'base/template.html' %} {% load attr %} {% load truncate %} {% load display %} {% block breadcrumb %} {% if creatable %} 新建   {% endif %} {% if exportable %} 导出 {% endif %} {% endblock %} {% block content %} {% if messages %}
{% for message in messages %} {{ message }}
{% endfor %}
{% endif %}
{% block pre-row %}{% endblock %}
{% include "base/filters.html" %}
{% include "base/paginator.html" %} {% block table %} {% block thead %} {% if operable %} {% endif %} {% if show_index %} {% endif %} {% for field in list_fields %} {% endfor %} {% block post_th %} {% endblock %} {% endblock %} {% block tbody %} {% if list %} {% for m in list %} {% if operable %} {% endif %} {% if show_index %} {% endif %} {% for field in list_fields %} {% endfor %} {% block post_td %} {% endblock %} {% block post_tr %} {% endblock %} {% endfor %} {% else %} {% endif %} {% endblock %}
{% if selectable %} {% endif %} ID{{ field.verbose }}{% include "base/sort.html" %}
{% block actions %}
{% if selectable %} {% endif %} {% if viewable or editable %} 查看 {% endif %} {% if removable %} 删除 {% endif %} {% if cloneable %} 复制 {% endif %} {% block extra-actions %}{% endblock %}
{% endblock %}
{{ m.id }} {% block field-td %} {% if field.class_name and editable %} {% with id=field.attribute_name|add:".id" %} {{ m|display:field.attribute_name|truncate }} {% endwith %} {% else %} {{ m|display:field.attribute_name|truncate }} {% endif %} {% endblock %}
No data found
{% endblock %} {% include "base/paginator.html" %}
{% block post-row %}{% endblock %}
{% block post-content %}{% endblock %} {% endblock %}