{% extends "admin/base_site.html" %} {% load i18n %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block content %}
{% csrf_token %} {% if form.non_field_errors %}

{{ form.non_field_errors }}

{% endif %}

{% trans "Step 1: Configure Collector" %}

{% for field in form.visible_fields %} {% endfor %}
{{ field.label_tag }} {{ field.errors }} {{ field }} {% if field.help_text %}
{{ field.help_text|safe }}
{% endif %}
{% if can_change %} {% else %}

{% trans "You have view access to this collector configuration, but not permission to change it." %}

{% endif %} {% trans "Back to inbox" %}

{% trans "Step 2: Review Test Results" %}

{% if results %} {% else %}

{% trans "Run the test to preview matching messages." %}

{% endif %}
{% endblock %}