{% extends "cabinet/base.html" %} {% block content %}

{{ module.label }}

{{ page.title }}

{% if page.subtitle %}

{{ page.subtitle }}

{% endif %}
{% if page.create_url %}{{ page.create_label }}{% endif %}
{% if page.filters %}
{% for field in page.filters %} {% endfor %}
{% endif %}
{% if page.rows %}
{% for column in page.columns %}{% endfor %} {% if page.actions %}{% endif %} {% for row in page.rows %} {% for column in page.columns %} {% endfor %} {% if page.actions %} {% endif %} {% endfor %}
{{ column.label }}Actions
{% if page.row_href_key and row.get(page.row_href_key) %} {{ row.get(column.key, "") }} {% else %} {{ row.get(column.key, "") }} {% endif %} {% for action in page.actions %}
{% endfor %}
{% else %}

{{ page.empty_message }}

{% endif %}
{% if page.pagination %} {% endif %} {% endblock %}