{% extends "base.html" %} {% load static %} {% block title %}Delete Radiology Report - {{ object.report_id }}{% endblock %} {% block content %}

Delete Radiology Report

Confirm Deletion

Critical Warning

You are about to permanently delete this radiology report. This action cannot be undone and may have serious legal and clinical implications.

Report Information
Report ID: {{ object.report_id }}
Patient: {{ object.study.patient.get_full_name }}
Study: {{ object.study.get_study_type_display }}
Study Date: {{ object.study.study_date|date:"M d, Y" }}
Status: {{ object.get_status_display }}
Clinical Details
Radiologist: {{ object.radiologist.get_full_name|default:"Not assigned" }}
Priority: {{ object.get_priority_display }}
Critical Findings: {% if object.has_critical_findings %} Yes {% else %} No {% endif %}
Created: {{ object.created_at|date:"M d, Y g:i A" }}
{% if object.has_critical_findings %}
Critical Findings Alert

This report contains critical findings that may be essential for patient care. Deletion could impact patient safety and legal compliance.

{% endif %} {% if object.status == 'finalized' %}
Finalized Report Warning

This is a finalized report that may be part of the official medical record. Deletion may violate record retention policies and legal requirements.

{% endif %}
Deletion Impact
  • Medical Record: Report will be permanently removed from patient's medical record
  • Billing: Associated billing codes and charges may be affected
  • Quality Metrics: Turnaround time and quality statistics will be impacted
  • Legal Compliance: May affect regulatory compliance and audit trails
  • Clinical Care: Future care decisions may be impacted by missing information
  • Peer Review: Any peer review data will be lost
Alternative Actions

Consider these alternatives to deletion:

Edit Report Content

Deletion Authorization

{% csrf_token %}
Department supervisor must authorize this deletion
Contact IT for authorization code
This will be logged for audit purposes
Cancel

Emergency Contact

For urgent deletion requests or questions:

  • Chief Radiologist: ext. 2100
  • Legal Department: ext. 2300
  • Compliance Officer: ext. 2200
  • IT Security: ext. 3001
{% endblock %}