{% extends "base.html" %} {% block title %}Startup Valuation — {{ report.project_name }}{% endblock %} {% block content %}
← العودة للتقرير
STARTUP VALUATION

تقييم المشروع — {{ report.project_name }}

{% if valuation.error is defined %}
{{ valuation.error }}
{% else %}
{% for method in ['dcf','comparable','scorecard','berkus'] %} {% if valuation[method] is defined %}
{{ method }}
{{ "{:,.0f}".format(valuation[method].value|default(0)) }} {{ valuation.currency|default('SAR') }}

{{ valuation[method].explanation|default('') }}

{% endif %} {% endfor %}
{% if valuation.recommended_range is defined %}
RECOMMENDED RANGE
{{ "{:,.0f}".format(valuation.recommended_range.low|default(0)) }} — {{ "{:,.0f}".format(valuation.recommended_range.high|default(0)) }} {{ valuation.currency|default('SAR') }}
{% endif %} {% endif %}
{% endblock %}