{% extends "base.html" %} {% block content %}
{% if items %}
{% for item in items %}
{{ item.title }} {{ item.process_name }} {{ item.status|replace('_', ' ') }} {% if item.total_steps > 0 %}
{{ item.completed_steps }}/{{ item.total_steps }}
{% endif %} {% if item.project_name %} {{ item.project_name }} {% endif %} {{ item.created_at.strftime('%Y-%m-%d') }}
{% endfor %}
{% else %}
No process runs yet
Go to Processes
{% endif %} {% endblock %}