SQL Advance
Client Name:
{{ client.fname }} {{ client.lname }}
Diagnostic History
DSM5 Diagnosis
ICD10 Diagnosis
Date Entered
{% for history in history %}
• {{ history.dsm5 }}
{{ history.icd10 }}
{{ history.start_date }}
{% endfor %}
Enter New Diagnosis
Select Unit:
{{ place_str }}
{% for unit in units %}
{{ unit.unit_lname }}
{% endfor %}
Start Date:
DSM5 Diagnosis:
{% for code in dsm5 %}
{{ code[:60] }}{% if code|length > 60 %}...{% endif %}
{% endfor %}
ICD10 Diagnosis:
{% for code in icd10 %}
{{ code[:60] }}{% if code|length > 60 %}...{% endif %}
{% endfor %}
Comments:
Submit
{% include '_footer.html' %}