{% extends "layout.html" %} {% block content %}
{% for id_, tab in tabs.items() if id_ == 'info' or tab.buttons or tab.table.rows %} {% if loop.index == 1 %}
{% block tab_info %}{% endblock%}
{% else %}
{% if tab.buttons %}
{{ tab.buttons|join(' ') }}
{% endif %} {% if tab.table.rows %} {{ tab.table.display(id_)|safe }} {% endif %}
{% endif %} {% endfor %}
{% endblock %}