{% extends 'base.html' %} {% load static %} {% block title %}Patient Discharge - {{ block.super }}{% endblock %} {% block css %} {% endblock %} {% block content %}
Patient Information
Discharge in Progress

Patient: {{ patient.full_name|default:"John Doe" }}

MRN: {{ patient.medical_record_number|default:"MRN123456" }}

DOB: {{ patient.date_of_birth|default:"1980-01-01" }}

Gender: {{ patient.gender|default:"Male" }}

Admission Date: {{ admission.admission_date|default:"2024-01-15" }}

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

Attending Physician: {{ admission.attending_physician|default:"Dr. Smith" }}

Ward/Room: {{ admission.bed.ward.name|default:"Ward A" }} - {{ admission.bed.room_number|default:"101" }}

Discharge Checklist
Medical Clearance
Medications & Prescriptions
Documentation & Follow-up
Discharge Timeline
Discharge Order

09:00 AM - Dr. Smith

Medication Review

10:30 AM - Pharmacist

Final Documentation

In Progress

Patient Departure

Pending

Discharge Summary
{% csrf_token %}
Discharge Medications
Aspirin 81mg

Take 1 tablet daily by mouth

30-day supply prescribed
Metoprolol 50mg

Take 1 tablet twice daily by mouth

30-day supply prescribed
Atorvastatin 40mg

Take 1 tablet daily at bedtime

30-day supply prescribed
Follow-up Appointments
{% endblock %} {% block js %} {% endblock %}