{% extends 'base/layout.html' %} {% block title %}Config Search{% endblock %} {% block content %}

Configuration Search

{% if query %}
{% if total_count %} {{ total_count }} device{{ total_count|pluralize }} matched "{{ query }}" {% if page_obj.paginator.num_pages > 1 %} — page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }} {% endif %} {% else %} No results for "{{ query }}" {% endif %}
{% endif %}
{% if error %}
{{ error }}
{% endif %} {% for result in results %}
{% if result.device %} {{ result.device.name }} {% else %} (no device match) {% endif %} {{ result.indexed_at|date:"Y-m-d H:i" }}
{# Headline is escaped server-side and marked safe by _render_headline — config content never reaches the page unescaped #}
{{ result.headline }}
{% endfor %} {% if page_obj.paginator.num_pages > 1 %} {% endif %}
{% endblock content %}