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

This commit is contained in:
oberon 2026-02-16 20:42:08 +01:00
parent 37747d0614
commit e3ef7806c8

View File

@ -167,7 +167,7 @@
<!-- Seiten-spezifische Config setzen (nur wenn config existiert) --> <!-- Seiten-spezifische Config setzen (nur wenn config existiert) -->
{% block scripts %} {% block scripts %}
{% super() %} <!-- Ruft den Basis-Block auf (Module laden + Initialisierung) --> {{ super() }} <!-- Ruft den Basis-Block auf (Module laden + Initialisierung) -->
<script> <script>
// Config + globale Sounds global verfügbar machen (nur auf dieser Seite) // 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 → mkConfig gesetzt:", window.mkConfig);
console.log("control.html → mkGlobalSounds:", window.mkGlobalSounds); console.log("control.html → mkGlobalSounds:", window.mkGlobalSounds);
</script> </script>
{% endblock %} {% endblock %}