{% extends 'base.html' %} {% load static %} {% block title %}Care Plan{% endblock %} {% block content %}

Care Plan Management

Comprehensive patient care planning and coordination

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

Primary Care Provider: {{ patient.primary_care_provider|default:"Not assigned" }}

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

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

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

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

Care Plan Status: {{ care_plan.get_status_display|default:"Not Created" }}

{% else %}

No patient selected. Please select a patient to create care plan.

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

Plan Overview

Health Conditions

{% for condition in health_conditions %}
{% empty %}
{% endfor %}

Care Goals

{% for goal in care_goals %}
{% empty %}
{% endfor %}

Interventions & Activities

{% for intervention in interventions %}
{% empty %}
{% endfor %}

Care Team Members

{% for member in care_team %}
{% empty %}
{% endfor %}

Plan Status & Review

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