{% extends "base.html" %} {% load static %} {% block title %}Care Plans - {{ block.super }}{% endblock %} {% block content %}

Care Plan Management

{% for plan in care_plans %} {% empty %} {% endfor %}
Patient Care Plan Type Primary Provider Status Start Date Progress Actions
{{ plan.patient.get_full_name }}
MRN: {{ plan.patient.mrn }} • {{ plan.patient.age }}y {{ plan.patient.get_gender_display }}
{{ plan.title }} {% if plan.description %}
{{ plan.description|truncatechars:60 }} {% endif %}
{{ plan.get_plan_type_display }} {{ plan.primary_provider.get_full_name }} {% if plan.care_team.count > 1 %}
+{{ plan.care_team.count|add:"-1" }} team member{{ plan.care_team.count|add:"-1"|pluralize }} {% endif %}
{% if plan.status == 'ACTIVE' %} Active {% elif plan.status == 'COMPLETED' %} Completed {% elif plan.status == 'ON_HOLD' %} On Hold {% elif plan.status == 'CANCELLED' %} Cancelled {% elif plan.status == 'DRAFT' %} Draft {% endif %} {{ plan.start_date|date:"M d, Y" }} {% if plan.target_end_date %}
Target: {{ plan.target_end_date|date:"M d, Y" }} {% endif %}
{% if plan.completion_percentage %}
{{ plan.completion_percentage }}%
{% else %} Not started {% endif %}
{% if plan.status == 'ACTIVE' %} {% endif %}
No care plans found

No care plans match your current filters.

{% if is_paginated %} {% endif %}
{% endblock %}