{% extends 'base.html' %} {% load static %} {% block title %}Incident Reports{% endblock %} {% block content %}

Incident Reports

Report New Incident
Clear
{% if incident_reports %}
{% for incident in incident_reports %} {% endfor %}
Incident Type Severity Location Reported By Date Status Actions
{{ incident.incident_title }}
{{ incident.incident_description|truncatechars:50 }}
{{ incident.get_incident_type_display }} {{ incident.get_severity_display }} {{ incident.location }} {% if incident.department %}
{{ incident.department }} {% endif %}
{{ incident.reported_by.first_name }} {{ incident.reported_by.last_name }}
{{ incident.report_date|date:"M d, Y" }}
{{ incident.incident_date|date:"M d, Y" }} {% if incident.incident_time %}
{{ incident.incident_time|time:"H:i" }} {% endif %}
{{ incident.get_status_display }}
{% if incident.status != 'CLOSED' %} {% endif %}
{% if is_paginated %} {% endif %} {% else %}
No incident reports found

Start by reporting your first incident.

Report First Incident
{% endif %}
{% for incident in incident_reports %} {% if incident.status != 'CLOSED' %} {% endif %} {% endfor %} {% endblock %}