{% extends "base.html" %} {% set section = "groups" %} {% block title %}Groups — Pipekit{% endblock %} {% block content %}
Groups {{ groups|length }} total New group…
{% if groups %} {% for g in groups %} {% endfor %}
name members last run status
{{ g.name }} {{ g.member_count }} {{ g.last_run_at or "—" }} {% if g.last_status %} {{ g.last_status }} {% else %} never ran {% endif %}
{% else %}
No groups yet.
Create one
{% endif %}
{% endblock %}