{% extends "base.html" %} {% load static %} {% block title %}{{ care_plan.title }} | Care Plan Detail{% endblock %} {% block css %} {% endblock %} {% block content %}
| Start Date | {{ care_plan.start_date }} |
|---|---|
| Target Completion | {{ care_plan.target_completion_date }} |
| End Date | {{ care_plan.end_date }} |
| Last Reviewed | {{ care_plan.last_reviewed }} |
| Next Review | {{ care_plan.next_review_date }} {% if care_plan.is_overdue %} Overdue {% endif %} |
| Status | {% if care_plan.approved %} Approved {% else %} Pending Approval {% endif %} |
|---|---|
| Approved By | {{ care_plan.approved_by.get_full_name }} |
| Approved Date | {{ care_plan.approved_date }} |
| 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 }} |
| Primary Provider | {{ care_plan.primary_provider.get_full_name }} |
|---|---|
| Care Team |
{% if care_plan.care_team.all %}
|
{{ goal.description }}
{% if goal.target_date %} Target Date: {{ goal.target_date }} {% endif %}{{ objective.description }}
{% if objective.measure %} Measure: {{ objective.measure }} {% endif %}{{ intervention.description }}
{% if intervention.frequency %} Frequency: {{ intervention.frequency }} {% endif %}{{ activity.description }}
{% if activity.assigned_to %} Assigned to: {{ activity.assigned_to }} {% endif %}{{ parameter.description }}
{% if parameter.frequency %} Frequency: {{ parameter.frequency }} {% endif %} {% if parameter.target_range %} Target Range: {{ parameter.target_range }} {% endif %}{{ criteria.description }}
{% if criteria.measure %} Measure: {{ criteria.measure }} {% endif %}{{ resource.description }}
{% endif %}{{ support.description }}
{% endif %} {% if support.contact %} Contact: {{ support.contact }} {% endif %}{{ outcome.description }}
{% if outcome.date_achieved %} Date Achieved: {{ outcome.date_achieved }} {% endif %}{{ note.content|truncatechars:200 }}