{% extends "base.html" %} {% load static %} {% block title %}Delete Vital Signs - EMR{% endblock %} {% block content %}

Delete Vital Signs Confirmation Required

Confirm Vital Signs Deletion

Warning: Permanent Deletion

You are about to permanently delete vital signs measurements. This action cannot be undone and may affect patient care documentation.

Vital Signs Details
{% if object.verified_by %} {% endif %}
Patient: {{ object.patient.get_full_name }}
{{ object.patient.medical_record_number }}
Measurement ID: {{ object.measurement_id }}
Date/Time: {{ object.measured_datetime|date:"M d, Y H:i" }}
Measured By: {{ object.measured_by.get_full_name }}
Verified By: {{ object.verified_by.get_full_name }}
Measurements
{% if object.temperature %} {% endif %} {% if object.blood_pressure %} {% endif %} {% if object.heart_rate %} {% endif %} {% if object.respiratory_rate %} {% endif %} {% if object.oxygen_saturation %} {% endif %} {% if object.pain_scale %} {% endif %} {% if object.weight %} {% endif %} {% if object.height %} {% endif %} {% if object.bmi %} {% endif %}
Temperature: {{ object.temperature }}°F ({{ object.get_temperature_method_display }})
Blood Pressure: {{ object.blood_pressure }} mmHg
Heart Rate: {{ object.heart_rate }} bpm
Respiratory Rate: {{ object.respiratory_rate }} /min
Oxygen Saturation: {{ object.oxygen_saturation }}% ({{ object.get_oxygen_delivery_display }})
Pain Scale: {{ object.pain_scale }}/10
Weight: {{ object.weight }} lbs
Height: {{ object.height }} inches
BMI: {{ object.bmi }}
Impact Assessment
  • Clinical Documentation: These vital signs will be permanently removed from the patient's medical record
  • Trending Data: Removal may affect vital signs trending and analysis
  • Quality Metrics: May impact quality reporting and compliance metrics
  • {% if object.has_critical_values %}
  • Critical Values: This measurement contains critical values that triggered alerts
  • {% endif %} {% if object.encounter %}
  • Encounter Documentation: Will affect the completeness of encounter {{ object.encounter.encounter_id }}
  • {% endif %}
{% if object.has_critical_values %}
Critical Values Alert

This vital signs measurement contains critical values:

    {% for critical in object.critical_values %}
  • {{ critical }}
  • {% endfor %}

Deleting critical values may compromise patient safety documentation.

{% endif %}
Alternative Actions

Consider these alternatives instead of deletion:

{% csrf_token %}
Deletion Confirmation
{% if object.has_critical_values %}
{% endif %}
{% endblock %} {% block js %} {% endblock %}