{% include '_header.html' %}

Clinical Records

{% for place in places %} {% endfor %} {% for diag in diags %} {% endfor %} {% for funct in functs %} {% endfor %} {% for plan in plans %} {% endfor %} {% for note in notes %} {% endfor %} {% for stay in stays %} {% endfor %}
Placement History
Name Unit Name Admission Discharge
{{ client.fname }} {{ client.lname }} {{ place.unit_lname }} {{ place.start_date }} {{ place.end_date if place.end_date else 'Current Placement' }}
Enter A Placement Record
Diagnostic History
Name Start Date End Date Unit Name
{{ diag.start_date }} {{ diag.end_date if diag.end_date else 'Current' }} {{ diag.dsm5 }}
Functional Assessments
Name Start Date End Date Unit Name
{{ client.fname }} {{ client.lname }} {{ funct.start_date }} {{ funct.end_date if funct.end_date else 'N/A' }} {{ funct.unit_lname }}
Support Plans
Name Start Date End Date Unit Name
{{ client.fname }} {{ client.lname }} {{ plan.start_date }} {{ plan.end_date if plan.end_date else 'N/A' }} {{ plan.unit_lname }}
Progress Notes
Name Chart ID Note Date Author
{{ client.fname }} {{ client.lname }} {{ note.chart }} {{ note.notedate if note.notedate else 'N/A' }} {{ note.staff_name }}
Inpatient Stays
Name Hospital Admission Discharge
{{ client.fname }} {{ client.lname }} {{ stay.hospital }} {{ stay.start_date }} {{ stay.end_date if stay.end_date else 'Active Admission' }}
{% include '_footer.html' %}