From f4a1e9d092dc1d0eb4feb5b412c794cf35ad4a8d Mon Sep 17 00:00:00 2001 From: Joshua Laymon Date: Thu, 14 Aug 2025 19:33:33 +0000 Subject: [PATCH] Add web/templates/normalize_source_results.html --- web/templates/normalize_source_results.html | 46 +++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 web/templates/normalize_source_results.html diff --git a/web/templates/normalize_source_results.html b/web/templates/normalize_source_results.html new file mode 100644 index 0000000..fcc96de --- /dev/null +++ b/web/templates/normalize_source_results.html @@ -0,0 +1,46 @@ +{% extends "base.html" %} +{% block body_class %}themed-bg{% endblock %} + +{% block content %} +
+
+

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

+

+ {{ changed }} {{ applied|yesno:"entries changed,entries would change" }}; {{ warnings_total }} warnings. + {% if limit %} (Limited to first {{ limit }} entries){% endif %} +

+ + {% if preview %} +
+ + + + + + + + + + {% for id, orig, norm in preview %} + + + + + + {% endfor %} + +
IDOriginalNormalized
{{ id }}{{ orig }}{{ norm }}
+
+ {% else %} +
+
No changes found
+
Nothing to preview for this selection.
+
+ {% endif %} + +
+ Back to Stats +
+
+
+{% endblock %} \ No newline at end of file