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

Incident {{ incident.name }}

{% for section, objects in objects %} {% endfor %}
Severity {% incident_severity incident.severity %}
Status {{ incident.get_status_display }}
{{ section }}
    {% for link, obj in objects %}
  • {% if link %} {{ obj }} {% else %} {{ obj }} {% endif %}
  • {% endfor %}
Created at
{{ object.created_at|date:'r' }}
Updated at
{{ object.updated_at|date:'r' }}
{% if show_events_link %} Events {% endif %} {% for link, anchor_text in store_links %} {{ anchor_text }} {% endfor %} {% if perms.incidents.change_incident %} Change status {% endif %}
{% if perms.incidents.view_machineincident and paginator.count %}

{{ paginator.count }} machine incident{{ paginator.count|pluralize }}

{% if next_url or previous_url %} {% endif %} {% if perms.incidents.change_machineincident %} {% endif %} {% for machine_incident in machine_incidents %} {% if perms.incidents.change_machineincident %} {% endif %} {% endfor %}
Serial number Status Created at Updated at
{% if perms.inventory.view_machinesnapshot %} {{ machine_incident.serial_number }} {% else %} {{ machine_incident.serial_number }} {% endif %} {{ machine_incident.get_status_display }} {{ machine_incident.created_at }} {{ machine_incident.updated_at }} Change status
{% if next_url or previous_url %} {% endif %} {% endif %} {% endblock %}