{% 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 }}{{ c }}{{ item }} {% for action in item.actions %} {% endfor %} {% for action in item.admin_actions %} {% endfor %}
{% endblock %}