{% extends "base.html" %} {% load static %} {% block title %}{{ problem.problem_name }} | Problem Detail{% endblock %} {% block css %} {% endblock %} {% block content %}

Problem Detail Comprehensive problem information

{{ problem.problem_name }}

{{ problem.patient.get_full_name }} Onset: {{ problem.onset_date|default:"Not specified" }} {% if problem.problem_code %} {{ problem.get_coding_system_display }}: {{ problem.problem_code }} {% endif %}
{{ problem.get_status_display }} {{ problem.get_priority_display }} Priority {{ problem.get_severity_display }}

Problem Information

Basic Information
{% if problem.status == 'RESOLVED' or problem.status == 'REMISSION' %} {% endif %}
Problem ID {{ problem.problem_id }}
Problem Type {{ problem.get_problem_type_display }}
Status {{ problem.get_status_display }}
Onset Date {{ problem.onset_date|default:"Not specified" }}
Resolution Date {{ problem.resolution_date }}
Duration {{ problem.duration.days }} days
Body Site {{ problem.body_site|default:"Not specified" }}
Laterality {{ problem.get_laterality_display|default:"Not specified" }}
{% if problem.clinical_notes %}
Clinical Notes
{{ problem.clinical_notes|linebreaks }}
{% endif %} {% if problem.patient_concerns %}
Patient Concerns
{{ problem.patient_concerns|linebreaks }}
{% endif %}
Provider Information
Diagnosing Provider {{ problem.diagnosing_provider.get_full_name }}
Managing Provider {{ problem.managing_provider.get_full_name|default:"Not assigned" }}
Related Encounter {% if problem.related_encounter %} {{ problem.related_encounter.encounter_type }} ({{ problem.related_encounter.start_datetime|date:"M d, Y" }}) {% else %} Not linked to an encounter {% endif %}
Verified {% if problem.verified %} Verified by {{ problem.verified_by.get_full_name }} on {{ problem.verified_date|date:"M d, Y" }} {% else %} Not Verified {% endif %}
{% if problem.treatment_goals %}
Treatment Goals
{{ problem.treatment_goals|linebreaks }}
{% endif %} {% if problem.outcome_measures %}
Outcome Measures
{{ problem.outcome_measures|linebreaks }}
{% endif %} {% if problem.status == 'RESOLVED' or problem.status == 'REMISSION' %}
Resolution Notes
{{ problem.resolution_notes|linebreaks|default:"No resolution notes provided." }}
{% endif %}

Related Care Plans

{% if problem.care_plans.all %}
{% for care_plan in problem.care_plans.all %}
{% endfor %}
{% else %}
No care plans are associated with this problem.
{% endif %}

Related Clinical Notes

{% if problem.related_clinical_notes.all %}
{% for note in problem.related_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 problem.
{% endif %}
Back to Problem List Patient Profile
{% if problem.status != 'RESOLVED' and problem.status != 'REMISSION' %} Mark as Resolved {% endif %} Edit Problem Delete
{% endblock %} {% block js %} {% endblock %}