{% extends "_base.html" %} {% block title %}{{ project.name | humanize }} · Urika{% endblock %} {% block heading %}{{ project.name | humanize }}{% endblock %} {% block breadcrumb %} {% endblock %} {% from "_macros.html" import modal, action_label %} {% block content %}
{% if project.question %}
{{ project.question }}
{% endif %} {% if project.description %}
{{ project.description }}
{% endif %}
{% set fz = running_by_type.get("finalize") %} {% if fz %} Finalize running… view log {% else %} {% endif %} {% set sm = running_by_type.get("summarize") %} {% if sm %} Summarize running… view log {% else %} {% endif %}
{% call modal('summarize', action_label("Summarize", "project", has_summary)) %}
{% endcall %} {% call modal('finalize', action_label("Finalize", "project", final_outputs.has_report and final_outputs.has_presentation)) %}
{% endcall %} {% if final_outputs.has_findings or final_outputs.has_report or final_outputs.has_presentation or has_summary %}

Final outputs

{% if final_outputs.has_findings %}
Findings
Best method, key metrics, ranking.
{% endif %} {% if final_outputs.has_report %}
Report
Full narrative write-up.
{% endif %} {% if final_outputs.has_presentation %}
Presentation ↗
Reveal.js slide deck.
{% endif %} {% if has_summary %}
Summary
Latest project status snapshot.
{% endif %}
{% endif %}

Recent experiments

{# "+ New experiment" mirrors the button on the full experiments list. Sends the user there with ?new=1 so the modal auto-opens on arrival. Avoids duplicating the modal on the home page. #} + New experiment {% if recent_experiments %} See all → {% endif %}
{% if recent_experiments %} {% else %}

No experiments yet. Click + New experiment above to start one.

{% endif %}
{% endblock %}