{{ patient_name }}
{% if dob %} · DOB {{ dob }}{% endif %}
{% if age %} ({{ age }}){% endif %}
{% if patient.sex %} · {{ patient.sex }}{% endif %}
· Date of service: {{ dos }}
{% if encounter.note_type %} · {{ encounter.note_type }}{% endif %}
{% if encounter.chief_complaint %}
Chief complaint: {{ encounter.chief_complaint }}
{% endif %}
{% for section in note_sections %}
{{ section.title or "Note" }}
{# Source note HTML is rendered as authored; print CSS cannot run scripts
and Chromium renders with no network access to leak to. #}
{{ section.html | safe if section.html else section.text }}
{% endfor %}
{% if vitals %}
Vitals
Measure
Value
Unit
{% for v in vitals %}
{{ v.display or v.code }}
{{ v.value }}
{{ v.unit or "" }}
{% endfor %}
{% endif %}
{% if social_history %}
Social history
{% for o in social_history %}
{{ o.display }}
{{ o.value }}
{% endfor %}
{% endif %}
{% if coverages %}
Payment information
Order
Payer
Plan
Type
Member ID
{% for c in coverages %}
{{ c.priority_label or "" }}
{{ c.payer or "" }}
{{ c.plan_name or "" }}
{{ c.plan_type or c.coverage_type or "" }}
{{ c.member_id or "" }}
{% endfor %}
{% endif %}
{% if addenda %}
Addenda
{% for addendum in addenda %}
{{ addendum.text }}
{{ addendum.status or "" }}{% if addendum.source %} · {{ addendum.source }}{% endif %}