{% for name, link in location %} {% if link %} {{ name }} {% else %} {{ name }} {% endif %} {% if not loop.last %}/{% endif %} {% endfor %}

{% if data %}

Formats: HTML, {% for fmt, link in formats %} {{ fmt }}{% if not loop.last %}, {% endif %} {% endfor %}

{% for column in header %} {% endfor %} {% for row in data %} {% for cell in row %} {% if cell.link %} {{ cell.value }} {% else %} {{ cell.value }} {% endif %} {% endfor %} {% endfor %}
{{ column }}
{% endif %} {% if row %}

Formats: HTML, {% for fmt, link in formats %} {{ fmt }}{% if not loop.last %}, {% endif %} {% endfor %}

{% for column, cell in row %} {% if column in ('id', 'type') %} {{ cell.value }} {% elif cell.link %} {{ cell.value }} {% else %} {{ cell.value }} {% endif %} {% endfor %}
{{ column }}
{% endif %}