{% extends "layouts/base.html" %} {% block title %}{{ project.title }} - Sequenced Project{% endblock %} {% block content %}

{{ project.title }}

{{ t('projects.type_sequenced') }} • {{ project.name }}

{% if can_edit %} {{ t('common.edit') }} {% endif %}
{% if project.description %}

{{ project.description }}

{% endif %}

Sequence Flow

{% if recent_prompts %}
{% for prompt in recent_prompts %}
{{ loop.index }}

{{ prompt.title }}

{{ prompt.description or prompt.name }}

Ready
{% endfor %}

Ready to Execute Sequence

{{ recent_prompts|length }} prompts will be executed in order

{% else %}

No Sequence Configured

Add prompts to this project to create your execution sequence.

{{ t('projects.add_first_prompt') }}
{% endif %}

Execution History

Last execution completed

5 prompts executed successfully • 2 hours ago

Project Stats

Total Prompts {{ project_stats.prompt_count or 0 }}
Sequence Order Linear
Last Execution 2h ago
Success Rate 98%

Quick Actions

{% endblock %}