{% load insight_tags %}
    {% for item in items %}
  1. {% if item.success %}
    {% icon name="check" size="xl" %}
    {% elif item.failed %}
    {% icon name="x-mark" size="xl" %}
    {% else %}
    {% if item.icon %} {% icon item.icon %} {% else %} 0{{ forloop.counter }} {% endif %}
    {% endif %}
  2. {% if not forloop.last %} {% endif %} {% endfor %}