{% extends "base.jinja" %} {% block content %}

{{ listing['title'] }}

{# iterate over items -#} {% for item in listing['items'] %}

{{ item['name'] }}

{%- for contact in item['contact'] -%}
{{ macros.render_element(contact) }}
{%- endfor -%}
{{ macros.render_element(item['games']) }}
{%- for field in ('organization',) -%} {%- if field in item -%} {{ macros.render_element(item[field]) }} {%- endif -%} {%- endfor -%}
{% endfor %} Back to top
{% endblock %}