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

{{ listing['title'] }}

{#- iterate over items, each one as a box-#} {% for item in listing['items'] %}
{#- name and contact elements on one line, as a level -#}

{{ item['name'] }}

{%- for contact in item['contact'] -%}
{{ macros.render_element(contact) }}
{%- endfor -%}
{#- games as a separate element -#}
{{ macros.render_element(item['games']) }}
{#- other elements -#}
{%- for field in ('organization',) -%} {%- if field in item %}{{ macros.render_element(item[field]) }}{% endif -%} {%- endfor -%}
{#- improve link -#}

Improve

{% endfor -%}

Back to top

{% endblock %}