{% for item in items %}
  1. {% if item.body %} {% if verbose %}

    {{ item.body }}

    {% else %}

    {{ item.body }}

    {% endif %} {% endif %} {% if item.top %}

    {{ item.top }}

    {% endif %} {% if item.sublist_collection %} {% for collection in item.sublist_collection %}

    {{ collection.lead_in }}

      {% for sublist in collection.sublists %} {% if sublist.body %}
    1. {{ sublist.body }}
    2. {% endif %} {% endfor %}
    {% endfor %} {% endif %} {% if item.documents %} {% for field in item.documents %} {% with items = [ { "title": field.title, "link": field.link, "file_type": field.file_type, "download": field.download } ] %} {% include 'toolkit/documents.html' %} {% endwith %} {% endfor %} {% endif %} {% if item.uploads %} {% for upload in item.uploads %} {% with name = upload.name, error = upload.error, value = upload.value, file_type = upload.file_type %} {% if PAGES_BUILDER %} {% include 'forms/upload.html' %} {% else %} {% include 'toolkit/forms/upload.html' %} {% endif %} {% endwith %} {% endfor %} {% endif %} {% if item.custom_body_list %} {% for custom_body in item.custom_body_list %} {% if custom_body.type == 'text' %}

    {{ custom_body.text|safe }}

    {% elif custom_body.type == 'action' %} {{ custom_body.label }} {% elif custom_body.type == 'box' %}

    {{ custom_body.label }}

    {% endif %} {% endfor %} {% endif %} {% if item.bottom %}

    {{ item.bottom }}

    {% endif %} {% if item.important %}
    Warning {{ item.important }}
    {% endif %}
  2. {% endfor %}