diff --git a/pipekit/web/app.py b/pipekit/web/app.py index dbcfc2f..4d951de 100644 --- a/pipekit/web/app.py +++ b/pipekit/web/app.py @@ -1333,9 +1333,11 @@ def groups_index(request: Request): if recent: g["last_run_at"] = recent[0]["started_at"] g["last_status"] = recent[0]["status"] + g["last_duration_s"] = recent[0]["duration_s"] else: g["last_run_at"] = None g["last_status"] = None + g["last_duration_s"] = None return _templates.TemplateResponse( request, "groups.html", _ctx(groups=groups), diff --git a/pipekit/web/templates/groups.html b/pipekit/web/templates/groups.html index 007d4a6..41668d1 100644 --- a/pipekit/web/templates/groups.html +++ b/pipekit/web/templates/groups.html @@ -19,6 +19,7 @@