{% extends "base.html" %} {% load static %} {% block title %}Vital Signs - {{ block.super }}{% endblock %} {% block content %}
| Patient | Date/Time | Temperature | Blood Pressure | Heart Rate | Respiratory Rate | O2 Saturation | Measured By | Actions |
|---|---|---|---|---|---|---|---|---|
|
{{ vitals.patient.get_full_name }} MRN: {{ vitals.patient.mrn }} {% if vitals.encounter %} • Encounter: {{ vitals.encounter.id }} {% endif %} |
{{ vitals.measured_datetime|date:"M d, Y H:i" }} | {% if vitals.temperature %} {{ vitals.temperature }}°{{ vitals.temperature_unit }} {% if 'temperature' in vitals.critical_values %} {% endif %} {% else %} - {% endif %} | {% if vitals.systolic_bp and vitals.diastolic_bp %} {{ vitals.systolic_bp }}/{{ vitals.diastolic_bp }} {% if 'blood_pressure' in vitals.critical_values %} {% endif %} {% else %} - {% endif %} | {% if vitals.heart_rate %} {{ vitals.heart_rate }} bpm {% if 'heart_rate' in vitals.critical_values %} {% endif %} {% else %} - {% endif %} | {% if vitals.respiratory_rate %} {{ vitals.respiratory_rate }} /min {% if 'respiratory_rate' in vitals.critical_values %} {% endif %} {% else %} - {% endif %} | {% if vitals.oxygen_saturation %} {{ vitals.oxygen_saturation }}% {% if 'oxygen_saturation' in vitals.critical_values %} {% endif %} {% else %} - {% endif %} | {{ vitals.measured_by.get_full_name }} |
{% if vitals.critical_values %}
{% endif %}
|
No vital signs foundNo vital signs match your current filters. |
||||||||