{% extends 'index.html' %} {% load humanize %} {% block title %}Incident Report Detail{% endblock %} {% block content %}
Report Date: {{ report.report_date }}
Reported By: {{ report.reported_by }}
Contact: {{ report.contact }}
Role: {{ report.role }}
Date/Time: {{ report.event_date }} {{ report.event_time }}
Location: {{ report.location }}
Type: {{ report.event_type }}
Description: {{ report.description }}
Injuries: {{ report.injuries|yesno:"Yes,No" }}
{% if report.injuries %}Details: {{ report.injury_details }}
{% endif %}Damage: {{ report.damage|yesno:"Yes,No" }}
{% if report.damage %}Cost: ${{ report.damage_cost|floatformat:2 }}
Description: {{ report.damage_desc }}
{% endif %}Drone Model: {{ report.drone_model }}
Registration: {{ report.registration }}
Controller: {{ report.controller }}
Payload: {{ report.payload }}
Battery: {{ report.battery }}
Firmware: {{ report.firmware }}
Weather: {{ report.weather }}
Wind: {{ report.wind }}
Temperature: {{ report.temperature }}
Lighting: {{ report.lighting }}
Witnesses Present: {{ report.witnesses|yesno:"Yes,No" }}
{% if report.witnesses %}Details: {{ report.witness_details }}
{% endif %}Emergency Response: {{ report.emergency|yesno:"Yes,No" }}
Agency Response: {{ report.agency_response }}
Scene Actions: {{ report.scene_action }}
FAA Report Filed: {{ report.faa_report|yesno:"Yes,No" }}
{% if report.faa_ref %}FAA Ref: {{ report.faa_ref }}
{% endif %}Cause: {{ report.cause }}
Notes: {{ report.notes }}
Signed By: {{ report.signature }}
Sign Date: {{ report.sign_date }}