{% if score_breakdown and score_breakdown.get('dimensions') %}
{% for dim_key, dim_val in score_breakdown.dimensions.items() %}
{{ dim_val.score | round(1) }}
{{ dim_val.label or dim_key.replace('_',' ').title() }}
Source: {{ dim_val.get('source','intake') }}
{% endfor %}
{% endif %}
{% endif %}
{% if idea.opportunity_brief %}
AI Opportunity Brief
{% else %}
AI Opportunity Brief
Brief not yet generated.
Generating...
{% endif %}
{% if assessment and assessment.feasibility_study_text %}
Detailed Feasibility Study
{% if idea.aadc_design_id %}
โ๏ธ Generate Ops Config โ
{% endif %}
{% if not assessment.human_approved %}
{% else %}
โ Approved
{% endif %}
{% endif %}
{% if intake_answers %}
Intake Answers
{% set q_labels = {
'q1_bottleneck': "What's slow/manual/error-prone?",
'q2_frequency': "How often does this happen?",
'q3_impact': "Who is affected?",
'q4_improvement': "What would 2x vs 10x look like?",
'q5_pattern': "Is this a repeating pattern?",
'q6_data': "What data exists today?",
'q7_simple_solution': "Could a non-AI solution solve 80%?",
'q8_judgment': "What judgment makes this hard to automate?",
'q9_failure_cost': "What does a wrong answer cost?",
'q10_data_available': "Do we have training data?",
'q11_mvp': "What's the minimum viable version?",
'q12_integration': "What needs to change in the existing system?"
} %}
{% for key, label in q_labels.items() %}
{% if intake_answers.get(key) %}