{% extends "layout.html" %} {% block content %}
{% for tab in tabs.values() if tab.content or tab.buttons or tab.table.rows or tab.form %}
{{ tab.buttons|button_bar|safe }} {% if tab.content %} {{ tab.content|safe }} {% endif %} {% if tab.form %} {{ tab.form|display_form |safe }} {% endif %} {% if tab.table.rows %} {{ tab.table.display(tab.name)|safe }} {% endif %}
{% endfor %}
{% endblock %}