{% extends "base.html" %} {% block title %} {{ application_name }} Development Console - Full Text Search{% endblock %} {% block head %} {% endblock %} {% block breadcrumbs %} Text Search {% endblock %} {% block body %}

Text Search > {{ index }}


{% if values.documents %}
{% for field in values.field_names %} {% endfor %} {% for document in values.documents %} {% for field in document.fields %} {% endfor %} {% endfor %}
Document Id{{ field }}
{{ document.doc_id }} {{ field }}
{% if paging %} {% include "pager.html" %} {% endif %}
{% else %} {% if query %} No documents in the index match the query. {% else %} No documents found in the index. {% endif %} {% endif %} {% endblock %} {% block final %} {% endblock %}