{% extends "base.html" %} {% block title %}List{% endblock %} {% block styles %} {{super()}} {% endblock %} {% block content %}
# | {% for h in item._data_headers %}{{ h }} | {% endfor %} {% if item._actions is defined %}{% endif %} {% if item._admin_actions is defined and current_user.role == 'admin' %} | {% endif %} | |
---|---|---|---|---|
{{ loop.index }} | {% if item._data_columns is defined %} {% for c in item._data_columns %}{% if c._self_reference_url is defined %} {{ c }} {% else %} {{ c }} {% endif %} {% if c._add_action is defined %} {% endif %} | {% endfor %} {% else %}{{ item }} | {% endif %} {% if item._actions is defined %}{% for action in item._actions %} {% endfor %} | {% endif %} {% if item._admin_actions is defined and current_user.role == 'admin' %}{% for action in item._admin_actions %} {% endfor %} | {% endif %}