{% extends 'base.html' %} {% load bootstrap %} {% block content %}

{{ paginator.count }} Probe{{ paginator.count|pluralize }}

{% if perms.probes.add_probesource %} {% endif %}
{{ form.q|bootstrap_inline }}
{{ form.model.label_tag }} {{ form.model|bootstrap_inline }}
{{ form.event_type.label_tag }} {{ form.event_type|bootstrap_inline }}
{{ form.status.label_tag }} {{ form.status|bootstrap_inline }}
{% if next_url or previous_url %} {% endif %}
{% for probe in object_list %} {% endfor %}
Model Events Name Status
{{ probe.get_model_display }} {% with probe.get_event_type_class_names as event_type_class_names %} {% if event_type_class_names %}

{% for event_type in event_type_class_names %} {{ event_type }}{% if not forloop.last %}
{% endif %} {% endfor %}

{% endif %} {% endwith %}
{{ probe.name }} {% if probe.status == 'ACTIVE' %} Active {% else %} Inactive {% endif %}
{% if next_url or previous_url %} {% endif %} {% endblock %}