{% extends 'admin/model/list.html' %} {% block body %} {% block model_menu_bar %} {% endblock %} {% if filter_groups %} {{ model_layout.filter_form() }}
{% endif %} {% block model_list_table %} {% block list_header scoped %} {% if actions %} {% endif %} {% block list_row_actions_header %} {% endblock %} {% set column = 0 %} {% for c, name in list_columns %} {% set column = column + 1 %} {% endfor %} {% endblock %} {% for row in data %} {% block list_row scoped %} {% if actions %} {% endif %} {% for c, name in list_columns %} {% endfor %} {##} {% endblock %} {% else %} {% endfor %}
  {% if admin_view.is_sortable(c) %} {% if sort_column == column %} {{ name }} {# {% if sort_desc %} {% else %} {% endif %} #} {% else %} {{ name }} {% endif %} {% else %} {{ name }} {% endif %} {% if admin_view.column_descriptions.get(c) %} {% endif %}
{% block list_row_actions scoped %} {# View #} {%- if admin_view.can_edit -%} {%- endif -%} {% endblock %} {{ get_value(row, c) }} {{ row.name }} {{ row.url }}
{% block empty_list_message %}
{{ admin_view.get_empty_list_message() }}
{% endblock %}
{{ lib.pager(page, num_pages, pager_url) }} {% endblock %} {{ actionlib.form(actions, url_for('.action_view')) }} {% endblock %}