{% extends 'base.html' %} {% load static %} {% block title %}Discharge Summary{% endblock %} {% block content %}

Discharge Summary

Comprehensive discharge documentation and care transition planning

{% if discharge_summary %} {% else %} {% endif %}

Patient Information

{% if patient %}

Name: {{ patient.first_name }} {{ patient.last_name }}

DOB: {{ patient.date_of_birth|date:"M d, Y" }}

Age: {{ patient.age }}

MRN: {{ patient.patient_id }}

Gender: {{ patient.get_gender_display }}

Phone: {{ patient.phone_primary|default:"Not provided" }}

Address: {{ patient.address_line_1|default:"Not provided" }}

Emergency Contact: {{ patient.emergency_contact_name|default:"Not provided" }}

Insurance: {{ patient.primary_insurance|default:"Not provided" }}

Admission Date: {{ admission.admission_date|date:"M d, Y g:i A"|default:"N/A" }}

Discharge Date: {{ discharge.discharge_date|date:"M d, Y g:i A"|default:"Pending" }}

Length of Stay: {{ length_of_stay|default:"Calculating..." }} days

{% else %}

No patient selected. Please select a patient to create discharge summary.

{% endif %}
{% if patient %}
{% csrf_token %}

Admission Information

Clinical Summary

Hospital Course

Describe the patient's clinical course during hospitalization, including treatments, procedures, and response to therapy.

Diagnoses

{% for diagnosis in secondary_diagnoses %}
{% endfor %} {% if not secondary_diagnoses %}
{% endif %}

Discharge Medications

{% for medication in discharge_medications %} {% empty %} {% endfor %}
Medication Dosage Frequency Route Duration Instructions Actions
No medications added. Click "Add Medication" to begin.

Discharge Instructions

List symptoms or conditions that would require immediate medical attention.

Follow-up Care

{% for followup in follow_up_appointments %}
{% empty %}
{% endfor %}

Discharge Disposition

Provider Information

{% endif %}
{% endblock %} {% block js %} {% endblock %}