{% extends "ui/base.html" %}
{% block title %}Revise run · Health-DeID{% endblock %}
{% block content %}
Revise run
Create a new run from {{ context.config.run.name or context.run_id }}. The current run remains unchanged.
{% if plan %}
{% set detection_message = 'Paid detector results will be reused.' if plan.detection == 'reuse' else ('Paid detection is disabled.' if plan.detection == 'skip' else 'Paid detection must run again.') %}
{{ detection_message }}
{{ plan.reason }} Rules, draft de-identification, validation, review, and final de-identification will run again.
{% endif %}
{% include "ui/_rules_modal.html" %}
{% endblock %}