From aa9a0e87845c7c8b6715e86883ca72a9e6549235 Mon Sep 17 00:00:00 2001 From: Joshua Laymon Date: Sat, 16 Aug 2025 15:53:43 +0000 Subject: [PATCH] Add web/templates/normalize_subject_result.html --- web/templates/normalize_subject_result.html | 54 +++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 web/templates/normalize_subject_result.html 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