{% extends "base.html" %} {% load static %} {% block title %}Clinical Notes - {{ block.super }}{% endblock %} {% block content %}
| Patient | Note | Type | Author | Date/Time | Status | Signature | Actions |
|---|---|---|---|---|---|---|---|
|
{{ note.patient.get_full_name }} MRN: {{ note.patient.mrn }} {% if note.encounter %} • Encounter: {{ note.encounter.id }} {% endif %} |
{{ note.title }}
{% if note.content %}
{{ note.content|truncatechars:80|striptags }} {% endif %} |
{{ note.get_note_type_display }} |
{{ note.author.get_full_name }}
{% if note.co_signer and note.co_signer != note.author %}
Co-signer: {{ note.co_signer.get_full_name }} {% endif %} |
{{ note.note_datetime|date:"M d, Y H:i" }} | {% if note.status == 'DRAFT' %} Draft {% elif note.status == 'IN_PROGRESS' %} In Progress {% elif note.status == 'COMPLETED' %} Completed {% elif note.status == 'REVIEWED' %} Reviewed {% elif note.status == 'AMENDED' %} Amended {% elif note.status == 'CANCELLED' %} Cancelled {% endif %} |
{% if note.electronically_signed %}
Signed
{% if note.signature_datetime %}
{{ note.signature_datetime|date:"M d H:i" }} {% endif %} {% elif note.status == 'COMPLETED' %} Unsigned {% else %} - {% endif %} |
{% if note.status == 'DRAFT' or note.status == 'IN_PROGRESS' %}
{% endif %}
{% if note.status == 'COMPLETED' and not note.electronically_signed %}
{% endif %}
{% if note.electronically_signed %}
{% endif %}
|
No clinical notes foundNo clinical notes match your current filters. |
|||||||