{% extends "base.html" %} {% block title %}Assessment Report - {{ assessment.name }}{% endblock %} {% block content %}

Assessment Completed!

{% if current_user.is_authenticated and current_user.role in ['admin', 'consultant'] %}
{% endif %}

Client Information

Name: {{ taker_display_name }}
Age: {{ taker_display_age }}
Gender: {{ taker_display_gender }}

The results for the {{ assessment.name }} assessment have been recorded.

{% if (current_user.is_authenticated and current_user.role in ['admin', 'consultant']) or is_free %} {% set assessment_name = assessment.name | lower | trim %} {# ISAA Summary #} {% if 'isaa' in assessment_name and summary %}

ISAA Summary

{{ summary|safe }}
{% endif %} {# Overall Score for non-VSMS assessments #} {% if 'vsms' not in assessment_name and 'social maturity' not in assessment_name %}

Overall Score

{% if 'vadrs' in assessment_name %} {% if interpretation %}
    {% for item in interpretation %}
  • {{ item }}
  • {% endfor %}
{% else %}

No subtype criteria met.

{% endif %} {% elif 'cars' in assessment_name %}

Total Raw Score: {{ total_raw_score }}

Interpretation: {{ interpretation }}

{% elif 'dst' in assessment_name or 'ddst' in assessment_name or 'dsst' in assessment_name or 'developmental screening' in assessment_name or 'developmental screening' in assessment.name.lower() %}

Total Score (days): {{ total_raw_score }}

{% if interpretation is not none %}

Interpretation: {{ interpretation }}

{% endif %} {% else %}

Total Raw Score: {{ total_raw_score }}

{% if t_score is not none %}

T-Score: {{ t_score }}

{% endif %} {% if interpretation is not none %}

Interpretation: {{ interpretation }}

{% endif %} {% endif %} {% if 'isaa' in assessment_name %} {% set isaa_class = 'No Autism' if total_raw_score < 70 else ('Mild Autism' if total_raw_score <= 106 else ('Moderate Autism' if total_raw_score <= 153 else 'Severe Autism')) %}

ISAA Classification: {{ isaa_class }}

Classification No Autism < 70 Mild Autism 70 to 106 Moderate Autism 107 to 153 Severe Autism > 153
{% endif %} {% endif %} {# Domain-wise results #} {% if domain_scores and 'gad 7' not in assessment_name and 'cars' not in assessment_name and 'level 2 anxiety adult' not in assessment_name %} {% if 'cbcl' in assessment_name %}

CBCL 1.5-5 Domain-wise Results

{% else %}

Domain-wise Results

{% endif %} {% if 'vsms' in assessment_name or 'social maturity' in assessment_name %} {% elif 'dst' in assessment_name or 'ddst' in assessment_name or 'dsst' in assessment_name or 'developmental screening' in assessment_name %} {% elif 'vadrs' in assessment_name %} {% else %} {% endif %} {% if 'cbcl' in assessment_name and cbcl_domain_interpretations %} {% endif %} {% for domain, score in domain_scores.items() %} {% if 'vsms' in assessment_name or 'social maturity' in assessment_name %} {% elif 'dst' in assessment_name or 'ddst' in assessment_name or 'dsst' in assessment_name or 'developmental screening' in assessment_name %} {% else %} {% endif %} {% if 'cbcl' in assessment_name and cbcl_domain_interpretations %} {% endif %} {% endfor %}
DomainEquivalent Age (Months)Score (days) Equivalent Age (Months)ScoreScoreInterpretation
{{ domain }}{{ "%.2f"|format(score / 30) }}{{ score }} {{ "%.2f"|format(score / 30) }} {% if 'ciss' in assessment_name %} {{ score }} / {{ max_domain_scores.get(domain, 'N/A') }} {% else %} {{ score }} {% endif %} {{ cbcl_domain_interpretations.get(domain, '—') }}
{% endif %} {% if 'cbcl' in assessment_name and cbcl_composites %}

CBCL Composite Scores

Composite Score Interpretation
Internalizing {{ cbcl_composites.internalizing }} {{ cbcl_interpretations.internalizing }}
Externalizing {{ cbcl_composites.externalizing }} {{ cbcl_interpretations.externalizing }}
Total Other Problems {{ cbcl_composites.total_other_problems }} {{ cbcl_interpretations.total_other_problems or '—' }}
Total Score {{ cbcl_composites.total_score }} {{ cbcl_interpretations.total_score }}
{% endif %} {# Answered Questions for VADRS, GAD 7, CARS, HAM A or LEVEL 2 Anxiety Adult #} {% if 'vadrs' in assessment_name or 'gad 7' in assessment_name or 'cars' in assessment_name or 'level 2 anxiety adult' in assessment_name or 'ham a' in assessment_name %}

Answered Questions

{% for response in assignment.responses %} {% endfor %}
Question Answer Score
{{ response.question.text }} {{ response.choice.text }} {{ response.choice.weightage }}
{% endif %} {# Summary Section #} {% if (taker_age_in_days is not none or taker_age_in_months is not none) and ('vsms' in assessment_name or 'social maturity' in assessment_name or 'dst' in assessment_name or 'ddst' in assessment_name or 'dsst' in assessment_name or 'developmental screening' in assessment_name or 'developmental screening' in assessment.name.lower()) %}
{% if 'vsms' in assessment_name or 'social maturity' in assessment_name %}

Social Maturity Summary

{% set sa_in_months = (domain_scores.values()|sum / 30) / domain_scores|length %} {% set ca_in_months = taker_age_in_months %} {% set social_quotient = (sa_in_months / ca_in_months) * 100 %}

Chronological Age (CA): {{ ca_in_months }} months

Social Age (SA): {{ "%.2f"|format(sa_in_months) }} months


Social Quotient (SQ): {{ "%.2f"|format(social_quotient) }}

{% elif 'dst' in assessment_name or 'ddst' in assessment_name or 'dsst' in assessment_name or 'developmental screening' in assessment_name or 'developmental screening' in assessment.name.lower() %}

Developmental Summary

Chronological Age (CA): {{ taker_age_in_months }} months

Developmental Age (DA): {{ "%.2f"|format(total_raw_score / 30) }} months


Developmental Quotient (DQ): {{ "%.2f"|format(dst_dq or 0) }}

{% if 'ddst' not in assessment_name %}
DST Interpretation Guide
DQ Range Classification
> 130Very Superior
120 - 129Superior
110 - 119High Average
90 - 109Average
80 - 89Low Average
70 - 79Borderline
50 - 69Mild Development Delay
35 - 49Moderate Development Delay
20 - 34Severe Development Delay
< 20Profound Development Delay
{% endif %} {% else %}

Developmental Summary

{% set da_in_months = (domain_scores.values()|sum / 30) / domain_scores|length %} {% set ca_in_months = taker_age_in_months %} {% set developmental_quotient = (da_in_months / ca_in_months) * 100 %}

Chronological Age (CA): {{ ca_in_months }} months

Developmental Age (DA): {{ "%.2f"|format(da_in_months) }} months


Developmental Quotient (DQ): {{ "%.2f"|format(developmental_quotient) }}

{% endif %}
{% endif %} {# Therapist Notes Section #} {% if assignment.therapist_notes %}

Therapist Notes

{{ assignment.therapist_notes }}
{% endif %} {# Chart Section #} {% if domain_scores and assessment_name != 'dst' %}

Domain Performance Graph

{% endif %} {% else %}

Results Pending Review

Thank you for completing the assessment. The results will be reviewed by a consultant, who will get in touch with you shortly. further queries email to connect @manaslr.com

{% endif %} Return to Home
{% endblock %} {% block scripts %} {% if (current_user.is_authenticated and current_user.role in ['admin', 'consultant']) or is_free %} {% if domain_scores and assessment_name != 'dst' %} {% set assessment_name = assessment.name | lower | trim %} {% endif %} {% endif %} {% endblock %}