diff --git a/.DS_Store b/.DS_Store
index ff1afbfd..fb2e6b04 100644
Binary files a/.DS_Store and b/.DS_Store differ
diff --git a/core/templatetags/__pycache__/custom_filters.cpython-312.pyc b/core/templatetags/__pycache__/custom_filters.cpython-312.pyc
index 0c229bdc..74e6d211 100644
Binary files a/core/templatetags/__pycache__/custom_filters.cpython-312.pyc and b/core/templatetags/__pycache__/custom_filters.cpython-312.pyc differ
diff --git a/core/templatetags/custom_filters.py b/core/templatetags/custom_filters.py
index 3bc6ac63..559143e0 100644
--- a/core/templatetags/custom_filters.py
+++ b/core/templatetags/custom_filters.py
@@ -27,6 +27,19 @@ def add_class(field, css_class):
return field.as_widget(attrs={"class": css_class})
+@register.filter(name="attr")
+def attr(field, args):
+ attrs = {}
+ definitions = args.split(",")
+ for definition in definitions:
+ if ":" in definition:
+ key, val = definition.split(":")
+ attrs[key.strip()] = val.strip()
+ else:
+ attrs[definition.strip()] = True
+ return field.as_widget(attrs=attrs)
+
+
@register.filter
def sum_values(queryset, field_names):
"""
diff --git a/db.sqlite3 b/db.sqlite3
index 92c99274..9488ee66 100644
Binary files a/db.sqlite3 and b/db.sqlite3 differ
diff --git a/emr/__pycache__/forms.cpython-312.pyc b/emr/__pycache__/forms.cpython-312.pyc
index 504fdf3f..e6ec0c07 100644
Binary files a/emr/__pycache__/forms.cpython-312.pyc and b/emr/__pycache__/forms.cpython-312.pyc differ
diff --git a/emr/__pycache__/urls.cpython-312.pyc b/emr/__pycache__/urls.cpython-312.pyc
index 72181879..d4e6da70 100644
Binary files a/emr/__pycache__/urls.cpython-312.pyc and b/emr/__pycache__/urls.cpython-312.pyc differ
diff --git a/emr/__pycache__/views.cpython-312.pyc b/emr/__pycache__/views.cpython-312.pyc
index a1d9f3f2..b4812c45 100644
Binary files a/emr/__pycache__/views.cpython-312.pyc and b/emr/__pycache__/views.cpython-312.pyc differ
diff --git a/emr/forms.py b/emr/forms.py
index 93bfa81a..ad241159 100644
--- a/emr/forms.py
+++ b/emr/forms.py
@@ -210,25 +210,25 @@ class CarePlanForm(forms.ModelForm):
'approved', 'approved_by'
]
widgets = {
- 'start_date': forms.DateInput(attrs={'type': 'date'}),
- 'end_date': forms.DateInput(attrs={'type': 'date'}),
- 'target_completion_date': forms.DateInput(attrs={'type': 'date'}),
- 'last_reviewed': forms.DateInput(attrs={'type': 'date'}),
- 'next_review_date': forms.DateInput(attrs={'type': 'date'}),
- 'description': forms.Textarea(attrs={'rows': 3}),
- 'patient_goals': forms.Textarea(attrs={'rows': 3}),
- 'patient_preferences': forms.Textarea(attrs={'rows': 3}),
- 'patient_barriers': forms.Textarea(attrs={'rows': 3}),
- 'progress_notes': forms.Textarea(attrs={'rows': 3}),
- 'goals': forms.Textarea(attrs={'rows': 3}),
- 'objectives': forms.Textarea(attrs={'rows': 3}),
- 'interventions': forms.Textarea(attrs={'rows': 3}),
- 'activities': forms.Textarea(attrs={'rows': 3}),
- 'monitoring_parameters': forms.Textarea(attrs={'rows': 3}),
- 'evaluation_criteria': forms.Textarea(attrs={'rows': 3}),
- 'resources_needed': forms.Textarea(attrs={'rows': 3}),
- 'support_systems': forms.Textarea(attrs={'rows': 3}),
- 'outcomes_achieved': forms.Textarea(attrs={'rows': 3}),
+ 'start_date': forms.DateInput(attrs={'type': 'date', 'class':'form-control form control-sm'}),
+ 'end_date': forms.DateInput(attrs={'type': 'date', 'class':'form-control form control-sm'}),
+ 'target_completion_date': forms.DateInput(attrs={'type': 'date', 'class':'form-control form control-sm'}),
+ 'last_reviewed': forms.DateInput(attrs={'type': 'date', 'class':'form-control form control-sm'}),
+ 'next_review_date': forms.DateInput(attrs={'type': 'date', 'class':'form-control form control-sm'}),
+ 'description': forms.Textarea(attrs={'rows': 3, 'class':'form-control form control-sm'}),
+ 'patient_goals': forms.Textarea(attrs={'rows': 3, 'class':'form-control form control-sm'}),
+ 'patient_preferences': forms.Textarea(attrs={'rows': 3, 'class':'form-control form control-sm'}),
+ 'patient_barriers': forms.Textarea(attrs={'rows': 3, 'class':'form-control form control-sm'}),
+ 'progress_notes': forms.Textarea(attrs={'rows': 3, 'class':'form-control form control-sm'}),
+ 'goals': forms.Textarea(attrs={'rows': 3, 'class':'form-control form control-sm'}),
+ 'objectives': forms.Textarea(attrs={'rows': 3, 'class':'form-control form control-sm'}),
+ 'interventions': forms.Textarea(attrs={'rows': 3, 'class':'form-control form control-sm'}),
+ 'activities': forms.Textarea(attrs={'rows': 3, 'class':'form-control form control-sm'}),
+ 'monitoring_parameters': forms.Textarea(attrs={'rows': 3, 'class':'form-control form control-sm'}),
+ 'evaluation_criteria': forms.Textarea(attrs={'rows': 3, 'class':'form-control form control-sm'}),
+ 'resources_needed': forms.Textarea(attrs={'rows': 3, 'class':'form-control form control-sm'}),
+ 'support_systems': forms.Textarea(attrs={'rows': 3, 'class':'form-control form control-sm'}),
+ 'outcomes_achieved': forms.Textarea(attrs={'rows': 3, 'class':'form-control form control-sm'}),
}
def __init__(self, *args, **kwargs):
diff --git a/emr/templates/emr/care_plan_detail.html b/emr/templates/emr/care_plan_detail.html
deleted file mode 100644
index dff8ed5a..00000000
--- a/emr/templates/emr/care_plan_detail.html
+++ /dev/null
@@ -1,799 +0,0 @@
-{% extends "base.html" %}
-{% load static %}
-
-{% block title %}{{ care_plan.title }} | Care Plan Detail{% endblock %}
-
-{% block css %}
-
-
-
-
-{% endblock %}
-
-{% block content %}
-
-
- - Home
- - EMR
- - Care Plans
- - {{ care_plan.title }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Completion Progress
-
-
- {{ care_plan.completion_percentage }}% Complete
-
-
-
-
-
Plan Timeline
-
-
-
-
- | Start Date |
- {{ care_plan.start_date }} |
-
- {% if care_plan.target_completion_date %}
-
- | Target Completion |
- {{ care_plan.target_completion_date }} |
-
- {% endif %}
- {% if care_plan.end_date %}
-
- | End Date |
- {{ care_plan.end_date }} |
-
- {% endif %}
- {% if care_plan.last_reviewed %}
-
- | Last Reviewed |
- {{ care_plan.last_reviewed }} |
-
- {% endif %}
- {% if care_plan.next_review_date %}
-
- | Next Review |
-
- {{ care_plan.next_review_date }}
- {% if care_plan.is_overdue %}
- Overdue
- {% endif %}
- |
-
- {% endif %}
-
-
-
-
-
-
-
-
Activity Chart
-
-
-
-
Approval Status
-
-
-
-
- | Status |
-
- {% if care_plan.approved %}
- Approved
- {% else %}
- Pending Approval
- {% endif %}
- |
-
- {% if care_plan.approved %}
-
- | Approved By |
- {{ care_plan.approved_by.get_full_name }} |
-
-
- | Approved Date |
- {{ care_plan.approved_date }} |
-
- {% endif %}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
Basic Information
-
-
-
-
- | Care Plan ID |
- {{ care_plan.care_plan_id }} |
-
-
- | Plan Type |
- {{ care_plan.get_plan_type_display }} |
-
-
- | Category |
- {{ care_plan.get_category_display }} |
-
-
- | Status |
- {{ care_plan.get_status_display }} |
-
-
- | Priority |
- {{ care_plan.get_priority_display }} |
-
-
-
-
-
-
Description
-
- {{ care_plan.description|linebreaks }}
-
-
-
-
-
Provider Information
-
-
-
-
- | Primary Provider |
- {{ care_plan.primary_provider.get_full_name }} |
-
-
- | Care Team |
-
- {% if care_plan.care_team.all %}
-
- {% for provider in care_plan.care_team.all %}
- - {{ provider.get_full_name }}
- {% endfor %}
-
- {% else %}
- No additional care team members
- {% endif %}
- |
-
-
-
-
-
-
Related Problems
- {% if care_plan.related_problems.all %}
-
- {% else %}
-
- No problems are associated with this care plan.
-
- {% endif %}
-
-
-
-
-
-
-
-
-
Goals
- {% if care_plan.goals %}
-
- {% for goal in care_plan.goals %}
-
-
-
{{ goal.title }}
- {{ goal.status|default:'Not Started' }}
-
-
{{ goal.description }}
- {% if goal.target_date %}
-
Target Date: {{ goal.target_date }}
- {% endif %}
-
- {% endfor %}
-
- {% else %}
-
- No goals have been defined for this care plan.
-
- {% endif %}
-
-
Objectives
- {% if care_plan.objectives %}
-
- {% for objective in care_plan.objectives %}
-
-
-
{{ objective.title }}
- {{ objective.status|default:'Not Started' }}
-
-
{{ objective.description }}
- {% if objective.measure %}
-
Measure: {{ objective.measure }}
- {% endif %}
-
- {% endfor %}
-
- {% else %}
-
- No objectives have been defined for this care plan.
-
- {% endif %}
-
-
-
-
-
-
-
Interventions
- {% if care_plan.interventions %}
-
- {% for intervention in care_plan.interventions %}
-
-
-
{{ intervention.title }}
- {{ intervention.status|default:'Not Started' }}
-
-
{{ intervention.description }}
- {% if intervention.frequency %}
-
Frequency: {{ intervention.frequency }}
- {% endif %}
-
- {% endfor %}
-
- {% else %}
-
- No interventions have been defined for this care plan.
-
- {% endif %}
-
-
Activities
- {% if care_plan.activities %}
-
- {% for activity in care_plan.activities %}
-
-
-
{{ activity.title }}
- {{ activity.status|default:'Not Started' }}
-
-
{{ activity.description }}
- {% if activity.assigned_to %}
-
Assigned to: {{ activity.assigned_to }}
- {% endif %}
-
- {% endfor %}
-
- {% else %}
-
- No activities have been defined for this care plan.
-
- {% endif %}
-
-
-
-
-
-
-
Monitoring Parameters
- {% if care_plan.monitoring_parameters %}
-
- {% for parameter in care_plan.monitoring_parameters %}
-
-
-
{{ parameter.title }}
- {{ parameter.status|default:'Not Started' }}
-
-
{{ parameter.description }}
- {% if parameter.frequency %}
-
Frequency: {{ parameter.frequency }}
- {% endif %}
- {% if parameter.target_range %}
-
Target Range: {{ parameter.target_range }}
- {% endif %}
-
- {% endfor %}
-
- {% else %}
-
- No monitoring parameters have been defined for this care plan.
-
- {% endif %}
-
-
Evaluation Criteria
- {% if care_plan.evaluation_criteria %}
-
- {% for criteria in care_plan.evaluation_criteria %}
-
-
-
{{ criteria.title }}
- {{ criteria.status|default:'Not Evaluated' }}
-
-
{{ criteria.description }}
- {% if criteria.measure %}
-
Measure: {{ criteria.measure }}
- {% endif %}
-
- {% endfor %}
-
- {% else %}
-
- No evaluation criteria have been defined for this care plan.
-
- {% endif %}
-
- {% if care_plan.progress_notes %}
-
Progress Notes
-
- {{ care_plan.progress_notes|linebreaks }}
-
- {% endif %}
-
-
-
-
-
-
- {% if care_plan.patient_goals %}
-
Patient Goals
-
- {{ care_plan.patient_goals|linebreaks }}
-
- {% endif %}
-
- {% if care_plan.patient_preferences %}
-
Patient Preferences
-
- {{ care_plan.patient_preferences|linebreaks }}
-
- {% endif %}
-
- {% if care_plan.patient_barriers %}
-
Identified Barriers
-
- {{ care_plan.patient_barriers|linebreaks }}
-
- {% endif %}
-
-
Resources Needed
- {% if care_plan.resources_needed %}
-
- {% for resource in care_plan.resources_needed %}
-
-
-
{{ resource.name }}
- {{ resource.status|default:'Pending' }}
-
- {% if resource.description %}
-
{{ resource.description }}
- {% endif %}
-
- {% endfor %}
-
- {% else %}
-
- No resources have been identified for this care plan.
-
- {% endif %}
-
-
Support Systems
- {% if care_plan.support_systems %}
-
- {% for support in care_plan.support_systems %}
-
-
-
{{ support.name }}
- {{ support.type|default:'Other' }}
-
- {% if support.description %}
-
{{ support.description }}
- {% endif %}
- {% if support.contact %}
-
Contact: {{ support.contact }}
- {% endif %}
-
- {% endfor %}
-
- {% else %}
-
- No support systems have been identified for this care plan.
-
- {% endif %}
-
-
-
-
-
-
-
Outcomes Achieved
- {% if care_plan.outcomes_achieved %}
-
- {% for outcome in care_plan.outcomes_achieved %}
-
-
-
{{ outcome.title }}
- {{ outcome.status|default:'Achieved' }}
-
-
{{ outcome.description }}
- {% if outcome.date_achieved %}
-
Date Achieved: {{ outcome.date_achieved }}
- {% endif %}
-
- {% endfor %}
-
- {% else %}
-
- No outcomes have been recorded for this care plan.
-
- {% endif %}
-
-
-
-
-
-
-
-
-
-
-
-
Related Clinical Notes
-
-
-
- {% if care_plan.clinical_notes.all %}
-
- {% for note in care_plan.clinical_notes.all %}
-
-
- {{ note.note_datetime|date:"M d, Y" }} {{ note.note_datetime|time:"h:i A" }}
-
-
-
-
-
{{ note.title }}
- {{ note.get_status_display }}
-
-
{{ note.content|truncatechars:200 }}
-
-
{{ note.get_note_type_display }} by {{ note.author.get_full_name }}
-
View Note
-
-
-
- {% endfor %}
-
- {% else %}
-
- No clinical notes are associated with this care plan.
-
- {% endif %}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-{% endblock %}
-
-{% block js %}
-
-
-
-{% endblock %}
-
diff --git a/emr/templates/emr/care_plan.html b/emr/templates/emr/care_plans/care_plan.html
similarity index 100%
rename from emr/templates/emr/care_plan.html
rename to emr/templates/emr/care_plans/care_plan.html
diff --git a/emr/templates/emr/care_plans/care_plan_detail.html b/emr/templates/emr/care_plans/care_plan_detail.html
new file mode 100644
index 00000000..d70e7aa3
--- /dev/null
+++ b/emr/templates/emr/care_plans/care_plan_detail.html
@@ -0,0 +1,804 @@
+{% extends "base.html" %}
+{% load static %}
+
+{% block title %}{{ care_plan.title }} | Care Plan Detail{% endblock %}
+
+{% block css %}
+{##}
+
+{##}
+
+{% endblock %}
+
+{% block content %}
+
+
+
+
+ Care PlanDetail
+
+
Comprehensive care plan information
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Completion Progress
+
+
+ {{ care_plan.completion_percentage }}% Complete
+
+
+
+
+
Plan Timeline
+
+
+
+
+ |
+
+
+ |
+
+
+ | Start Date |
+ {{ care_plan.start_date }} |
+
+ {% if care_plan.target_completion_date %}
+
+ | Target Completion |
+ {{ care_plan.target_completion_date }} |
+
+ {% endif %}
+ {% if care_plan.end_date %}
+
+ | End Date |
+ {{ care_plan.end_date }} |
+
+ {% endif %}
+ {% if care_plan.last_reviewed %}
+
+ | Last Reviewed |
+ {{ care_plan.last_reviewed }} |
+
+ {% endif %}
+ {% if care_plan.next_review_date %}
+
+ | Next Review |
+
+ {{ care_plan.next_review_date }}
+ {% if care_plan.is_overdue %}
+ Overdue
+ {% endif %}
+ |
+
+ {% endif %}
+
+
+
+
+
+
+
+
Activity Chart
+
+
+
+
Approval Status
+
+
+
+
+ | Status |
+
+ {% if care_plan.approved %}
+ Approved
+ {% else %}
+ Pending Approval
+ {% endif %}
+ |
+
+ {% if care_plan.approved %}
+
+ | Approved By |
+ {{ care_plan.approved_by.get_full_name }} |
+
+
+ | Approved Date |
+ {{ care_plan.approved_date }} |
+
+ {% endif %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
Basic Information
+
+
+
+
+ | Care Plan ID |
+ {{ care_plan.care_plan_id }} |
+
+
+ | Plan Type |
+ {{ care_plan.get_plan_type_display }} |
+
+
+ | Category |
+ {{ care_plan.get_category_display }} |
+
+
+ | Status |
+ {{ care_plan.get_status_display }} |
+
+
+ | Priority |
+ {{ care_plan.get_priority_display }} |
+
+
+
+
+
+
Description
+
+ {{ care_plan.description|linebreaks }}
+
+
+
+
+
Provider Information
+
+
+
+
+ | Primary Provider |
+ {{ care_plan.primary_provider.get_full_name }} |
+
+
+ | Care Team |
+
+ {% if care_plan.care_team.all %}
+
+ {% for provider in care_plan.care_team.all %}
+ - {{ provider.get_full_name }}
+ {% endfor %}
+
+ {% else %}
+ No additional care team members
+ {% endif %}
+ |
+
+
+
+
+
+
Related Problems
+ {% if care_plan.related_problems.all %}
+
+ {% else %}
+
+ No problems are associated with this care plan.
+
+ {% endif %}
+
+
+
+
+
+
+
+
+
Goals
+ {% if care_plan.goals %}
+
+ {% for goal in care_plan.goals %}
+
+
+
{{ goal.title }}
+ {{ goal.status|default:'Not Started' }}
+
+
{{ goal.description }}
+ {% if goal.target_date %}
+
Target Date: {{ goal.target_date }}
+ {% endif %}
+
+ {% endfor %}
+
+ {% else %}
+
+ No goals have been defined for this care plan.
+
+ {% endif %}
+
+
Objectives
+ {% if care_plan.objectives %}
+
+ {% for objective in care_plan.objectives %}
+
+
+
{{ objective.title }}
+ {{ objective.status|default:'Not Started' }}
+
+
{{ objective.description }}
+ {% if objective.measure %}
+
Measure: {{ objective.measure }}
+ {% endif %}
+
+ {% endfor %}
+
+ {% else %}
+
+ No objectives have been defined for this care plan.
+
+ {% endif %}
+
+
+
+
+
+
+
Interventions
+ {% if care_plan.interventions %}
+
+ {% for intervention in care_plan.interventions %}
+
+
+
{{ intervention.title }}
+ {{ intervention.status|default:'Not Started' }}
+
+
{{ intervention.description }}
+ {% if intervention.frequency %}
+
Frequency: {{ intervention.frequency }}
+ {% endif %}
+
+ {% endfor %}
+
+ {% else %}
+
+ No interventions have been defined for this care plan.
+
+ {% endif %}
+
+
Activities
+ {% if care_plan.activities %}
+
+ {% for activity in care_plan.activities %}
+
+
+
{{ activity.title }}
+ {{ activity.status|default:'Not Started' }}
+
+
{{ activity.description }}
+ {% if activity.assigned_to %}
+
Assigned to: {{ activity.assigned_to }}
+ {% endif %}
+
+ {% endfor %}
+
+ {% else %}
+
+ No activities have been defined for this care plan.
+
+ {% endif %}
+
+
+
+
+
+
+
Monitoring Parameters
+ {% if care_plan.monitoring_parameters %}
+
+ {% for parameter in care_plan.monitoring_parameters %}
+
+
+
{{ parameter.title }}
+ {{ parameter.status|default:'Not Started' }}
+
+
{{ parameter.description }}
+ {% if parameter.frequency %}
+
Frequency: {{ parameter.frequency }}
+ {% endif %}
+ {% if parameter.target_range %}
+
Target Range: {{ parameter.target_range }}
+ {% endif %}
+
+ {% endfor %}
+
+ {% else %}
+
+ No monitoring parameters have been defined for this care plan.
+
+ {% endif %}
+
+
Evaluation Criteria
+ {% if care_plan.evaluation_criteria %}
+
+ {% for criteria in care_plan.evaluation_criteria %}
+
+
+
{{ criteria.title }}
+ {{ criteria.status|default:'Not Evaluated' }}
+
+
{{ criteria.description }}
+ {% if criteria.measure %}
+
Measure: {{ criteria.measure }}
+ {% endif %}
+
+ {% endfor %}
+
+ {% else %}
+
+ No evaluation criteria have been defined for this care plan.
+
+ {% endif %}
+
+ {% if care_plan.progress_notes %}
+
Progress Notes
+
+ {{ care_plan.progress_notes|linebreaks }}
+
+ {% endif %}
+
+
+
+
+
+
+ {% if care_plan.patient_goals %}
+
Patient Goals
+
+ {{ care_plan.patient_goals|linebreaks }}
+
+ {% endif %}
+
+ {% if care_plan.patient_preferences %}
+
Patient Preferences
+
+ {{ care_plan.patient_preferences|linebreaks }}
+
+ {% endif %}
+
+ {% if care_plan.patient_barriers %}
+
Identified Barriers
+
+ {{ care_plan.patient_barriers|linebreaks }}
+
+ {% endif %}
+
+
Resources Needed
+ {% if care_plan.resources_needed %}
+
+ {% for resource in care_plan.resources_needed %}
+
+
+
{{ resource.name }}
+ {{ resource.status|default:'Pending' }}
+
+ {% if resource.description %}
+
{{ resource.description }}
+ {% endif %}
+
+ {% endfor %}
+
+ {% else %}
+
+ No resources have been identified for this care plan.
+
+ {% endif %}
+
+
Support Systems
+ {% if care_plan.support_systems %}
+
+ {% for support in care_plan.support_systems %}
+
+
+
{{ support.name }}
+ {{ support.type|default:'Other' }}
+
+ {% if support.description %}
+
{{ support.description }}
+ {% endif %}
+ {% if support.contact %}
+
Contact: {{ support.contact }}
+ {% endif %}
+
+ {% endfor %}
+
+ {% else %}
+
+ No support systems have been identified for this care plan.
+
+ {% endif %}
+
+
+
+
+
+
+
Outcomes Achieved
+ {% if care_plan.outcomes_achieved %}
+
+ {% for outcome in care_plan.outcomes_achieved %}
+
+
+
{{ outcome.title }}
+ {{ outcome.status|default:'Achieved' }}
+
+
{{ outcome.description }}
+ {% if outcome.date_achieved %}
+
Date Achieved: {{ outcome.date_achieved }}
+ {% endif %}
+
+ {% endfor %}
+
+ {% else %}
+
+ No outcomes have been recorded for this care plan.
+
+ {% endif %}
+
+
+
+
+
+
+
+
+
+
+
+
Related Clinical Notes
+
+
+
+ {% if care_plan.clinical_notes.all %}
+
+ {% for note in care_plan.clinical_notes.all %}
+
+
+ {{ note.note_datetime|date:"M d, Y" }} {{ note.note_datetime|time:"h:i A" }}
+
+
+
+
+
{{ note.title }}
+ {{ note.get_status_display }}
+
+
{{ note.content|truncatechars:200 }}
+
+
{{ note.get_note_type_display }} by {{ note.author.get_full_name }}
+
View Note
+
+
+
+ {% endfor %}
+
+ {% else %}
+
+ No clinical notes are associated with this care plan.
+
+ {% endif %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+{% endblock %}
+
+{% block js %}
+
+
+
+{% endblock %}
+
diff --git a/emr/templates/emr/care_plans/care_plan_form.html b/emr/templates/emr/care_plans/care_plan_form.html
index 2becbffd..b0ae27c8 100644
--- a/emr/templates/emr/care_plans/care_plan_form.html
+++ b/emr/templates/emr/care_plans/care_plan_form.html
@@ -88,16 +88,7 @@
{% endblock %}
{% block content %}
-
-
- - Home
- - EMR
- - Care Plans
- -
- {% if form.instance.id %}Edit Care Plan{% else %}New Care Plan{% endif %}
-
-
-
+