{% extends "base.html" %} {% load static %} {% block title %}{{ clinical_note.title }} | Clinical Note Detail{% endblock %} {% block css %} {% endblock %} {% block content %}

Clinical Note Detail Comprehensive clinical documentation

{{ clinical_note.title }}

{{ clinical_note.patient.get_full_name }} {{ clinical_note.note_datetime|date:"F d, Y" }} at {{ clinical_note.note_datetime|time:"h:i A" }} {{ clinical_note.author.get_full_name }}
{{ clinical_note.get_status_display }} {{ clinical_note.get_note_type_display }}

Note Content

{% if clinical_note.structured_content %} {% for section in clinical_note.structured_content %}
{{ section.title }}
{{ section.content|linebreaks }}
{% endfor %} {% else %} {{ clinical_note.content|linebreaks }} {% endif %}
{% if clinical_note.status == 'SIGNED' %}
Electronically Signed
{{ clinical_note.author.get_full_name }} ({{ clinical_note.author.get_role_display }})
Signed on {{ clinical_note.signed_datetime|date:"F d, Y" }} at {{ clinical_note.signed_datetime|time:"h:i A" }}
{% endif %} {% if clinical_note.status == 'AMENDED' %}
Amendment Information
Amended by: {{ clinical_note.amended_by.get_full_name }} ({{ clinical_note.amended_by.get_role_display }})
Amended on: {{ clinical_note.amended_datetime|date:"F d, Y" }} at {{ clinical_note.amended_datetime|time:"h:i A" }}
Amendment reason: {{ clinical_note.amendment_reason }}
{% endif %} {% if clinical_note.addendums.all %}
Addendums
{% for addendum in clinical_note.addendums.all %}
Addendum - {{ addendum.created_at|date:"F d, Y" }}
Added by: {{ addendum.author.get_full_name }} ({{ addendum.author.get_role_display }})
Added on: {{ addendum.created_at|date:"F d, Y" }} at {{ addendum.created_at|time:"h:i A" }}
{{ addendum.content|linebreaks }}
{% endfor %}
{% endif %}

Note Details

{% if clinical_note.related_encounter %}
{% endif %}
Version History
{% if clinical_note.version_history %}
{% for version in clinical_note.version_history %} {% endfor %}
Version Date User Action Details
{{ version.version }} {{ version.timestamp }} {{ version.user }} {{ version.action }} {{ version.details }}
{% else %}
No version history available for this note.
{% endif %}
Back to Notes Patient Profile
{% if clinical_note.status == 'DRAFT' %} Sign Note {% endif %} {% if clinical_note.status == 'SIGNED' %} Amend Note Add Addendum {% endif %} {% if clinical_note.status == 'DRAFT' %} Edit Note Delete {% endif %} Print
{% endblock %} {% block js %} {% endblock %}