]> git.ipfire.org Git - pbs.git/commitdiff
web: Make the modal template fit for Jinja
authorMichael Tremer <michael.tremer@ipfire.org>
Tue, 21 Jan 2025 15:17:14 +0000 (15:17 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 21 Jan 2025 15:17:14 +0000 (15:17 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/templates/modal.html

index fccfd432cb917b7327b63709c307cec6c057cfda..6708ad41f12a15cc401ca618712b161d9a9cc190 100644 (file)
@@ -4,7 +4,7 @@
        <section class="section">
                <div class="container">
                        {# Breadcrumbs #}
-                       {% block breadcrumbs %}{% end block %}
+                       {% block breadcrumbs %}{% endblock %}
                </div>
        </section>
 
                <div class="container">
                        <div class="columns is-centered">
                                <div class="column is-half">
-                                       {% block modal_title %}{% end block %}
+                                       {% block modal_title %}{% endblock %}
 
                                        <div class="box">
-                                               {% block modal %}{% end block %}
+                                               {% block modal %}{% endblock %}
                                        </div>
                                </div>
                        </div>
                </div>
        </section>
-{% end block %}
+{% endblock %}