{% extends "base.html" %} {% load static %} {% block title %}{{ problem.problem_name }} | Problem Detail{% endblock %} {% block css %} {% endblock %} {% block content %}
| 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" }} |
| 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 %} |
{{ note.content|truncatechars:200 }}