{% macro render_table(headers, rows, id, entry_route=None, title=None, per_page=15) %} {% if rows %} {% if title %} {% endif %}
{% for h in headers %} {% endfor %} {% for row in rows %} {% for cell in row.cells %} {% endfor %} {% endfor %}
{{ h }}
{% if cell.type == 'bool' %} {{ cell.html | safe }} {% elif cell.url %} {{ cell.text }} {% else %} {{ cell.text or '-' }} {% endif %}
{% else %}
No data.
{% endif %} {% endmacro %}