{% extends "base.html" %} {% load static %} {% block title %}Problem List - {{ block.super }}{% endblock %} {% block content %}
| Patient | Problem | Type | Priority | Status | Onset Date | Diagnosed By | Actions |
|---|---|---|---|---|---|---|---|
|
{{ problem.patient.get_full_name }} MRN: {{ problem.patient.mrn }} • {{ problem.patient.age }}y {{ problem.patient.get_gender_display }} |
{{ problem.problem_name }}
{% if problem.problem_code %}
Code: {{ problem.problem_code }} {% endif %} {% if problem.description %} {{ problem.description|truncatechars:50 }} {% endif %} |
{{ problem.get_problem_type_display }} | {% if problem.priority == 'HIGH' %} High {% elif problem.priority == 'MEDIUM' %} Medium {% else %} Low {% endif %} | {% if problem.status == 'ACTIVE' %} Active {% elif problem.status == 'RESOLVED' %} Resolved {% elif problem.status == 'INACTIVE' %} Inactive {% elif problem.status == 'RULED_OUT' %} Ruled Out {% endif %} |
{{ problem.onset_date|date:"M d, Y" }}
{% if problem.resolution_date %}
Resolved: {{ problem.resolution_date|date:"M d, Y" }} {% endif %} |
{{ problem.diagnosing_provider.get_full_name }}
{% if problem.managing_provider and problem.managing_provider != problem.diagnosing_provider %}
Managing: {{ problem.managing_provider.get_full_name }} {% endif %} |
{% if problem.status == 'ACTIVE' %}
{% endif %}
|
No problems foundNo problems match your current filters. |
|||||||