{% extends "base.html" %} {% load static %} {% block title %}Delete Care Plan: {{ care_plan.title }}{% endblock %} {% block css %} {% endblock %} {% block content %}

Delete Care Plan Confirm care plan deletion

Confirm Deletion

Warning: You are about to delete a care plan

You are about to permanently delete the care plan "{{ care_plan.title }}" for patient {{ care_plan.patient.get_full_name }}. This action cannot be undone.

Deleting this care plan will remove it from the patient's medical record and may affect clinical notes, interventions, and other related records.

Care Plan Summary
Care Plan ID {{ care_plan.care_plan_id }}
Title {{ care_plan.title }}
Patient {{ care_plan.patient.get_full_name }}
Plan Type {{ care_plan.get_plan_type_display }}
Status {{ care_plan.get_status_display }}
Priority {{ care_plan.get_priority_display }}
Start Date {{ care_plan.start_date }}
Primary Provider {{ care_plan.primary_provider.get_full_name }}
Completion
{{ care_plan.completion_percentage }}%
Created {{ care_plan.created_at }}
Impact Assessment

Deleting this care plan will affect the following:

Related Problems
{% if care_plan.related_problems.all %}
    {% for problem in care_plan.related_problems.all %}
  • {{ problem.problem_name }} ({{ problem.get_status_display }})
  • {% endfor %}
{% else %}

No problems associated with this care plan.

{% endif %}
Clinical Notes
{% if care_plan.clinical_notes.all %}
    {% for note in care_plan.clinical_notes.all %}
  • {{ note.title }} ({{ note.note_datetime|date:"M d, Y" }})
  • {% endfor %}
{% else %}

No clinical notes associated with this care plan.

{% endif %}
Goals & Interventions
{% if care_plan.goals or care_plan.interventions %}
Goals
{% if care_plan.goals %}
    {% for goal in care_plan.goals %}
  • {{ goal.title }}
  • {% endfor %}
{% else %}

No goals defined.

{% endif %}
Interventions
{% if care_plan.interventions %}
    {% for intervention in care_plan.interventions %}
  • {{ intervention.title }}
  • {% endfor %}
{% else %}

No interventions defined.

{% endif %}
{% else %}

No goals or interventions defined for this care plan.

{% endif %}
Alternative Actions

Instead of deleting this care plan, consider these alternatives:

Mark as Completed

If the care plan has been fulfilled, mark it as completed instead of deleting it.

Mark as Completed
Put On Hold

If the care plan is temporarily not relevant, put it on hold.

Put On Hold
Edit Care Plan

Update the care plan information if it's incorrect or needs changes.

Edit Care Plan
{% csrf_token %}
Cancel
{% endblock %} {% block js %} {% endblock %}