{% extends "layout.html" %} {% block title %}{{ entity_label }} — {{ admin_title }}{% endblock %} {% block content %}
{% if bulk_delete and can_delete %} {% endif %} {% if bulk_export %} {% endif %} {% for action in actions %} {% if action.target == "list" %} {% endif %} {% endfor %}
{% if filter_fields %} {% endif %} {% if can_create %} Add {{ entity_label }} {% endif %}
{% if filter_fields %}
{% for field in filter_fields %}
{% if field.field_type == "Select" %} {% elif field.field_type == "Boolean" %} {% else %} {% endif %}
{% endfor %} Clear
{% endif %}
{% include "list_table.html" %}
{% if bulk_export %}

Export CSV

Select the fields to include in the export.

{% for name, label in export_columns %} {% endfor %}
{% endif %}
{% endblock %}