diff --git a/web/templates/normalize_subject_result.html b/web/templates/normalize_subject_result.html new file mode 100644 index 0000000..f0d7f4d --- /dev/null +++ b/web/templates/normalize_subject_result.html @@ -0,0 +1,54 @@ +{% extends "base.html" %} +{% block body_class %}themed-bg{% endblock %} + +{% block content %} +
+

{{ dry_run|yesno:"Preview,Applied" }} — Subject Normalizer

+ +
+
+
+
Mode
+
+ {{ dry_run|yesno:"Dry-run Preview,Applied" }} +
+
+
+
Entries scanned
+
{{ total_considered }}
+
+
+
Changed
+
+ {% if dry_run %} + {{ rows|dictsort:"changed"|length }} + {% else %} + {{ changed_count }} + {% endif %} +
+
+
+
+ In preview, nothing is saved; you can apply from the + Statistics page. +
+
+ +
+ + + + + + + + + + + {% for r in rows %} + + + +
IDBeforeAfterChanged?
+ #{{ r.id }} + {{ r.before|default:"—" }}{{ \ No newline at end of file