{% for item in items %}
  • {{ item.title }} {% if item.body %}

    {{ item.body }}

    {% endif %} {% if item.subtext %}

    {{ item.subtext }}

    {% endif %} {% for status in item.statuses %} {% if status.title %}

    {{ status.title }}

    {% if status.hint %}

    {{ status.hint }}

    {% endif %} {% if status.list %}
      {% for list_item in status.list %}
    • {{ list_item }}
    • {% endfor %}
    {% endif %}
    {% endif %} {% endfor %}
  • {% endfor %}