{% load i18n %}

{% blocktrans count original.get_stored_field_count as field_count %} {{ field_count }} stored field {% plural %} {{ field_count }} stored fields {% endblocktrans %}

Data returned from the Search Result's stored_fields.
See here for an explanation of what 'Stored' means
{% for key, value in original.get_stored_fields.items %}
{% if value.raw != value.safe %}

{{ value.raw }}  

{{ value.safe }}  

{% trans "This field has been sanitised for display; hover to view the raw data" %}

{% else %}

{{ value.safe }}  

{% endif %} {% if key == original.get_content_field %}

{% trans "This field supplies the primary document to be indexed" %}

{% endif %}
{% empty %}

{% trans "No stored fields found" %}

{% endfor %}

{% blocktrans count original.get_additional_field_count as field_count %} {{ field_count }} additional field {% plural %} {{ field_count }} additional fields {% endblocktrans %}

Data returned from the Search Result's additional_fields.
{% for key, value in original.get_additional_fields.items %}
{% if value.raw != value.safe %}

{{ value.raw }}  

{{ value.safe }}  

{% trans "This field has been sanitised for display; hover to view the raw data" %}

{% else %}

{{ value.safe }}  

{% endif %}
{% empty %}

{% trans "No additional fields found" %}

{% endfor %}

{% blocktrans with haystack_version as version %} Haystack v{{ version }} settings {% endblocktrans %}

{% trans "All relevant settings found in the Django settings module." %}
{% for setting in haystack_settings %}

{{ setting.1 }}

{% if setting.2 %}

{{ setting.2 }} backend

{% endif %}
{% empty %}

{% trans "No settings found. Which is probably a bad sign." %}

{% endfor %}
{% if similar_objects %}

{% trans "More like this" %}

{% include "admin/haystackbrowser/result_list_headers.html" %} {% for result in similar_objects %} {% include "admin/haystackbrowser/result.html" %} {% endfor %}
{% endif %}