SCORES
{% for k, v in feedback.scores.items() %}
{% endfor %}
{{ feedback.overall_score }}/100
{% if feedback.strengths %}
STRENGTHS
{% for s in feedback.strengths %}- • {{ s }}
{% endfor %}
{% endif %}
{% if feedback.weaknesses %}
WEAKNESSES
{% for w in feedback.weaknesses %}- • {{ w }}
{% endfor %}
{% endif %}
{% if feedback.tough_questions %}
TOUGH QUESTIONS TO PREPARE FOR
{% for q in feedback.tough_questions %}- {{ loop.index }}. {{ q }}
{% endfor %}
{% endif %}
{% if feedback.improved_pitch %}
IMPROVED PITCH
{{ feedback.improved_pitch }}
{% endif %}