{% extends "base.html" %} {% block title %}List{% endblock %} {% block styles %} {{super()}} {% endblock %} {% block content %}

{{ title }}

{% for item in items %} {% if loop.index == 1 and item._data_headers is defined %} {% for h in item._data_headers %} {% endfor %} {% if item._actions is defined %} {% endif %} {% if item._admin_actions is defined and current_user.role == 'admin' %} {% endif %} {% endif %} {% if item._data_columns is defined %} {% for c in item._data_columns %} {% endfor %} {% else %} {% endif %} {% if item._actions is defined %} {% endif %} {% if item._admin_actions is defined and current_user.role == 'admin' %} {% endif %} {% if loop.last and item._data_headers is defined %} {% endif %} {% endfor %}
#{{ h }}
{{ loop.index }} {% if c._self_reference_url is defined %} {{ c | string | truncate(50, True, '...') }} {% else %} {{ c | string | truncate(50, True, '...') }} {% endif %} {% if c._add_action is defined %} {% endif %} {{ item }} {% for action in item._actions %} {% endfor %} {% for action in item._admin_actions %} {% endfor %}
{% endblock %}