{% extends 'base.html' %} {% load static %} {% block title %}Progress Note{% endblock %} {% block content %}

Progress Note

Document patient progress and clinical observations

{% if progress_note %} {% 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 }}

Room: {{ patient.current_room|default:"Outpatient" }}

Attending: {{ encounter.attending_physician|default:"Not assigned" }}

Admission Date: {{ encounter.start_date|date:"M d, Y"|default:"N/A" }}

Day #: {{ hospital_day|default:"N/A" }}

Primary Diagnosis: {{ encounter.primary_diagnosis|default:"Not documented" }}

Allergies: {{ patient.allergies|default:"NKDA" }}

Code Status: {{ patient.code_status|default:"Full Code" }}

{% else %}

No patient selected. Please select a patient to create progress note.

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

Note Information

Subjective

Objective

Vital Signs

Assessment

{% for problem in problems %}
{% empty %}
{% endfor %}

Plan

Note Status

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