{% extends "base.html" %} {% block content %}
← Documents Indexes
{% for msg in errors %}
{{ msg }}
{% endfor %} {% if plan_rows %}

Winning plan

    {% for row in plan_rows %}
  1. {{ row.stage }} {% if row.details.indexName %} indexName={{ row.details.indexName }} {% endif %} {% if row.details.keyPattern %} keyPattern={{ row.details.keyPattern }} {% endif %} {% if row.details.direction %} direction={{ row.details.direction }} {% endif %} {% if row.details.filter %} filter={{ row.details.filter }} {% endif %}
  2. {% endfor %}
{% endif %} {% endblock %}