{% extends "base.html" %} {% set section = "groups" %} {% block title %}Groups — Pipekit{% endblock %} {% block content %}
| name | members | schedule | next run | last run | duration | status | |
|---|---|---|---|---|---|---|---|
| {{ g.name }} | {{ g.member_count }} | {% set scheds = g.schedules if g.schedules is iterable and g.schedules is not string else [] %}
{% for s in scheds %}
{{ s.cron_expr }}{% if not s.enabled %} (disabled){% endif %}
{% else %}
—
{% endfor %}
|
{% for s in scheds %}
{% if s.enabled %}{{ s.next_fire_at }}{% if s.next_fire_in %} ({{ s.next_fire_in }}){% endif %}{% else %}—{% endif %}
{% else %}
—
{% endfor %}
|
{{ g.last_run_at | localtime }} | {{ g.last_duration_s | duration }} | {% if g.last_status %} {{ g.last_status }} {% else %} never ran {% endif %} |