template-fix: Statt {% super() %} muss {{ super() }} verwendet werden.

This commit is contained in:
2026-02-16 20:42:08 +01:00
parent 37747d0614
commit e3ef7806c8
+2 -2
View File
@@ -167,7 +167,7 @@
<!-- Seiten-spezifische Config setzen (nur wenn config existiert) -->
{% block scripts %}
{% super() %} <!-- Ruft den Basis-Block auf (Module laden + Initialisierung) -->
{{ super() }} <!-- Ruft den Basis-Block auf (Module laden + Initialisierung) -->
<script>
// Config + globale Sounds global verfügbar machen (nur auf dieser Seite)
@@ -177,4 +177,4 @@
console.log("control.html → mkConfig gesetzt:", window.mkConfig);
console.log("control.html → mkGlobalSounds:", window.mkGlobalSounds);
</script>
{% endblock %}
{% endblock %}