{% extends "base.html" %} {% load static %} {% block title %}Encounter Details - {{ object.patient.get_full_name }}{% endblock %} {% block css %} {% endblock %} {% block content %}
| Encounter ID: | {{ object.encounter_id }} |
| Patient: |
{{ object.patient.get_full_name }}
{{ object.patient.medical_record_number }} |
| Provider: | Dr. {{ object.provider.get_full_name }} |
| Encounter Type: | {{ object.get_encounter_type_display }} |
| Status: | {{ object.get_status_display }} |
| Start Date/Time: | {{ object.start_datetime|date:"M d, Y H:i" }} |
| End Date/Time: | {% if object.end_datetime %} {{ object.end_datetime|date:"M d, Y H:i" }} {% else %} {% if object.is_active %} Ongoing {% else %} Not set {% endif %} {% endif %} |
| Duration: | {% if object.duration %} {{ object.duration }} {% elif object.is_active %} Ongoing {% else %} Not calculated {% endif %} |
| Location: |
{{ object.location|default:"Not specified" }}
{% if object.room_number %}
Room {{ object.room_number }} {% endif %} |
| Priority: | {{ object.get_priority_display }} |
No vital signs recorded for this encounter.
Add Vital SignsNo clinical notes for this encounter.
Add Clinical Note| Age: | {{ object.patient.age }} years |
| Gender: | {{ object.patient.get_gender_display }} |
| Blood Type: | {% if object.patient.blood_type %} {{ object.patient.blood_type }} {% else %} Unknown {% endif %} |
| Allergies: | {% if object.patient.allergies %} {{ object.patient.allergies }} {% else %} None known {% endif %} |