{% extends "base.html" %} {% block content %}
{% if items %}
{% for item in items %}
{{ item.name }} {{ item.process_type }} {{ item.status }} {{ item.step_count }} step{{ 's' if item.step_count != 1 }} {% if item.category %} {{ item.category }} {% endif %}
Edit
{% endfor %}
{% else %}
No processes yet
Create First Process
{% endif %} {% endblock %}