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

{{ paginator.count }} Incident{{ paginator.count|pluralize }}

{{ form.q|bootstrap_inline }}
{{ form.severity.label_tag }} {{ form.severity|bootstrap_inline }}
{{ form.status.label_tag }} {{ form.status|bootstrap_inline }}
{% if next_url or previous_url %} {% endif %}
{% for incident in object_list %} {% endfor %}
Name Status Severity Created at
{{ incident.name }} {{ incident.get_status_display }} {% incident_severity incident.severity %} {{ incident.created_at }}
{% if next_url or previous_url %} {% endif %} {% endblock %}