{% extends "base.html" %} {% block title %}Pitch Rehearsal — {{ report.project_name }}{% endblock %} {% block content %}
← العودة للتقرير
AI PITCH REHEARSAL

تدريب العرض الاستثماري — {{ report.project_name }}

{% if feedback %} {% if feedback.error is defined %}
{{ feedback.error }}
{% elif feedback.scores is defined %}
SCORES
{% for k, v in feedback.scores.items() %}
{{ v }}/10
{{ k }}
{% 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 %}
{% else %}
{{ feedback.raw|default(feedback|string) }}
{% endif %} {% endif %}
{% endblock %}