{%- if errors|length > 0 %} {%- else %} {%- endif %}
{%- if warnings|length > 0 %} {%- else %} {%- endif %}
{%- if info|length > 0 %} {%- else %} {%- endif %}

{%- if errors|length > 0 %}
    {% for item in errors -%}
  1. {{ item }}
  2. {%- endfor %}
{%- endif -%} {%- if warnings|length > 0 %}
    {% for item in warnings -%}
  1. {{ item }}
  2. {%- endfor %}
{%- endif -%} {%- if info|length > 0 %}
    {% for item in info -%}
  1. {{ item }}
  2. {%- endfor %}
{%- endif -%}