{% extends "base.html" %} {% block content %}

{{ item.name }}

Edit
{{ item.status }} {{ item.process_type }} {% if item.category %}{{ item.category }}{% endif %} {{ steps|length }} step{{ 's' if steps|length != 1 }} Created {{ item.created_at.strftime('%Y-%m-%d') }} {% if item.tags %}
{% for tag in item.tags %}{{ tag }}{% endfor %}
{% endif %}
{% if item.description %}

Description

{{ item.description }}
{% endif %}

Steps{{ steps|length }}

{% for step in steps %}
{{ loop.index }}
{{ step.title }} {% if step.instructions %}
{{ step.instructions[:120] }}{{ '...' if step.instructions|length > 120 }}
{% endif %} {% if step.expected_output %}
Output: {{ step.expected_output[:80] }}
{% endif %}
{% if step.estimated_days %} {{ step.estimated_days }}d {% endif %}
{% endfor %}

Runs{{ runs|length }}

{% for run in runs %}
{{ run.title }} {{ run.status|replace('_', ' ') }} {% if run.total_steps > 0 %} {{ run.completed_steps }}/{{ run.total_steps }} steps {% endif %} {% if run.project_name %} {{ run.project_name }} {% endif %} {{ run.created_at.strftime('%Y-%m-%d') }}
{% endfor %} {% if not runs %}
No runs yet
{% endif %} {% if steps %}
{% endif %}
{% endblock %}