{% extends "base.html" %} {% block body_class %}themed-bg{% endblock %} {% block content %}

Scripture Normalizer — {{ applied|yesno:"Applied,Dry‑run" }}

{% if applied %}Changes have been written to the database.{% else %}Preview only — no data was changed.{% endif %} Changed entries: {{ changed }}. Warnings: {{ warnings_total }}.

Preview (first 100 changed rows)
Format: ID · old → new
{% for rid, old, new in preview %}
ID {{ rid }}
Old: {{ old|default:"—" }}
New: {{ new|default:"—" }}
{% empty %}
No changes detected for the selected scope.
{% endfor %}
← Back to Statistics {% if not applied and user.is_authenticated and user.is_staff %}
{% csrf_token %}
{% endif %}
{% endblock %}