{% extends "public/base.html" %} {% block title %}{{ t('public.results_title', 'Your Results') }} - {{ project.name }} - {{ app_settings.title if app_settings else 'Survey Manager' }}{% endblock %} {% block content %}

{{ t('public.survey_completed', '¡Survey Completed!') }}

{{ t('public.thank_you', 'Thank you for your participation') }}, {{ person.name }}!

{{ t('public.your_temperament_profile', 'Your Temperament Profile') }}
{{ t('public.temperament_breakdown', 'Temperament Breakdown') }}
{{ t('public.detailed_scores', 'Detailed Scores') }}
{% for temp in temps %}
{{ temp.name }}
{% set score = scores.get(temp.id, 0) %} {% set total_with_temperament = scores.values()|sum %} {% set percentage = (score / total_with_temperament * 100)|int if total_with_temperament > 0 else 0 %}
{{ score }} ({{ percentage }}%)
{% endfor %}
{% if recommendation %}
{{ t('public.recommendation_for_you', 'Recommendation for You') }}

{{ recommendation.name }}

{% if recommendation.description %}

{{ recommendation.description }}

{% endif %}
{% endif %}
{{ t('public.back_to_home', 'Back to Home') }}
{% endblock %}