{% extends "base.html" %} {% load static %} {% block title %} {% if form.instance.id %}Edit Care Plan: {{ form.instance.title }}{% else %}New Care Plan{% endif %} {% endblock %} {% block css %} {% endblock %} {% block content %}

{% if form.instance.id %} Edit Care Plan Update care plan information {% else %} New Care Plan Create a new patient care plan {% endif %}

{% if form.instance.id %} Edit Care Plan: {{ form.instance.title }} {% else %} Care Plan Information {% endif %}

{% csrf_token %} {% if form.errors %}
Error! Please correct the errors below. {% if form.non_field_errors %}
    {% for error in form.non_field_errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% endif %}
Basic Information
{{ form.patient }}
{% if form.patient.errors %}
{{ form.patient.errors }}
{% endif %}
{{ form.title }}
{% if form.title.errors %}
{{ form.title.errors }}
{% endif %}
{{ form.plan_type }}
{% if form.plan_type.errors %}
{{ form.plan_type.errors }}
{% endif %}
{{ form.category }}
{% if form.category.errors %}
{{ form.category.errors }}
{% endif %}
{{ form.description }} {% if form.description.errors %}
{{ form.description.errors }}
{% endif %}
Timeline
{{ form.start_date }}
{% if form.start_date.errors %}
{{ form.start_date.errors }}
{% endif %}
{{ form.target_completion_date }}
{% if form.target_completion_date.errors %}
{{ form.target_completion_date.errors }}
{% endif %}
{{ form.end_date }}
{% if form.end_date.errors %}
{{ form.end_date.errors }}
{% endif %}
{{ form.next_review_date }}
{% if form.next_review_date.errors %}
{{ form.next_review_date.errors }}
{% endif %}
{{ form.status }}
{% if form.status.errors %}
{{ form.status.errors }}
{% endif %}
{{ form.priority }}
{% if form.priority.errors %}
{{ form.priority.errors }}
{% endif %}
{{ form.completion_percentage }}
{% if form.completion_percentage.errors %}
{{ form.completion_percentage.errors }}
{% endif %}
{{ form.approved }}
{% if form.approved.errors %}
{{ form.approved.errors }}
{% endif %}
Provider Information
{{ form.primary_provider }}
{% if form.primary_provider.errors %}
{{ form.primary_provider.errors }}
{% endif %}
{{ form.care_team }} {% if form.care_team.errors %}
{{ form.care_team.errors }}
{% endif %}
Related Problems
{{ form.related_problems }} {% if form.related_problems.errors %}
{{ form.related_problems.errors }}
{% endif %}
Goals & Objectives
Interventions & Activities
Monitoring & Evaluation
{{ form.progress_notes }} {% if form.progress_notes.errors %}
{{ form.progress_notes.errors }}
{% endif %}
Patient Involvement
{{ form.patient_goals }} {% if form.patient_goals.errors %}
{{ form.patient_goals.errors }}
{% endif %}
{{ form.patient_preferences }} {% if form.patient_preferences.errors %}
{{ form.patient_preferences.errors }}
{% endif %}
{{ form.patient_barriers }} {% if form.patient_barriers.errors %}
{{ form.patient_barriers.errors }}
{% endif %}
Cancel
Care Plan Preview
Care Plan Title
Patient Name Draft
Care plan description will appear here...
Progress 0%
Quick Tips
  • Fields marked with * are required.
  • Set realistic goals and objectives that are measurable.
  • Include the patient in care planning for better adherence.
  • Specify monitoring parameters to track progress effectively.
  • Regular reviews improve care plan effectiveness.
Care Plan Types
Treatment
Focused on treating specific conditions
Nursing
Nursing-specific interventions and monitoring
Rehabilitation
Recovery and restoration of function
Palliative
Comfort and symptom management
Preventive
Prevention of disease or complications
{% endblock %} {% block js %} {% endblock %}