From 9515ec8ae9f73e506aa0c3a45c04c2a6fd393125 Mon Sep 17 00:00:00 2001 From: Deeman Date: Thu, 5 Mar 2026 22:29:00 +0100 Subject: [PATCH] fix(admin): load Leaflet maps in template preview page The /admin/templates//preview/ page renders article HTML directly but never loaded Leaflet CSS/JS, so country-map and city-map divs appeared empty. Co-Authored-By: Claude Sonnet 4.6 --- .../admin/templates/admin/template_preview.html | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/web/src/padelnomics/admin/templates/admin/template_preview.html b/web/src/padelnomics/admin/templates/admin/template_preview.html index aaf01c9..2ac2deb 100644 --- a/web/src/padelnomics/admin/templates/admin/template_preview.html +++ b/web/src/padelnomics/admin/templates/admin/template_preview.html @@ -3,6 +3,10 @@ {% block title %}Preview - {{ preview.title }} - Admin{% endblock %} +{% block head %}{{ super() }} + +{% endblock %} + {% block admin_content %} ← Back to template @@ -29,3 +33,8 @@ {% endblock %} + +{% block scripts %} + + +{% endblock %}