{% extends "ui/base.html" %} {% block title %}Runs ยท Health-DeID{% endblock %} {% block content %}
Runs saved in the configured runs folder.
| Run | Status | Records | Type | Updated | Open |
|---|---|---|---|---|---|
|
{{ run.name or run.run_id }}
{{ run.run_id }}
|
{% set color = { 'completed': 'success', 'running': 'primary', 'awaiting_review': 'warning', 'completed_with_errors': 'warning', 'failed': 'danger', 'blocked': 'danger' }.get(run.status, 'secondary') %} {{ run.status|replace('_', ' ') }} | {{ run.ready_count }} ready of {{ run.record_count }} | {{ "Revised run" if run.parent_run_id else "Original run" }} | Open | |
| No runs yet. Create one to get started. | |||||