diff --git a/advlabdb/templates/admin_create.jinja.html b/advlabdb/templates/admin_create.jinja.html index 012a03b..5d7a69f 100644 --- a/advlabdb/templates/admin_create.jinja.html +++ b/advlabdb/templates/admin_create.jinja.html @@ -1,4 +1,4 @@ -{% from "macros.jinja.html" import information %} +{% from "macros.jinja.html" import information, render_footer %} {% extends "admin/model/create.html" %} {% block body %} @@ -6,5 +6,5 @@ {{ super() }} - {{ footer|safe }} + {{ render_footer(footer) }} {% endblock %} diff --git a/advlabdb/templates/admin_details.jinja.html b/advlabdb/templates/admin_details.jinja.html index a0fb365..1ee171b 100644 --- a/advlabdb/templates/admin_details.jinja.html +++ b/advlabdb/templates/admin_details.jinja.html @@ -1,4 +1,4 @@ -{% from "macros.jinja.html" import information %} +{% from "macros.jinja.html" import information, render_footer %} {% extends "admin/model/details.html" %} {% block body %} @@ -6,5 +6,5 @@ {{ super() }} - {{ footer|safe }} + {{ render_footer(footer) }} {% endblock %} diff --git a/advlabdb/templates/admin_edit.jinja.html b/advlabdb/templates/admin_edit.jinja.html index 696e4ad..e67f377 100644 --- a/advlabdb/templates/admin_edit.jinja.html +++ b/advlabdb/templates/admin_edit.jinja.html @@ -1,4 +1,4 @@ -{% from "macros.jinja.html" import information %} +{% from "macros.jinja.html" import information, render_footer %} {% extends "admin/model/edit.html" %} {% block body %} @@ -6,5 +6,5 @@ {{ super() }} - {{ footer|safe }} + {{ render_footer(footer) }} {% endblock %} diff --git a/advlabdb/templates/admin_list.jinja.html b/advlabdb/templates/admin_list.jinja.html index 9be6750..403b486 100644 --- a/advlabdb/templates/admin_list.jinja.html +++ b/advlabdb/templates/admin_list.jinja.html @@ -1,4 +1,4 @@ -{% from "macros.jinja.html" import information %} +{% from "macros.jinja.html" import information, render_footer %} {% extends "admin/model/list.html" %} {% block body %} @@ -6,5 +6,5 @@ {{ super() }} - {{ footer|safe }} + {{ render_footer(footer) }} {% endblock %} diff --git a/advlabdb/templates/assistant_create.jinja.html b/advlabdb/templates/assistant_create.jinja.html index 2ff8540..16b48cb 100644 --- a/advlabdb/templates/assistant_create.jinja.html +++ b/advlabdb/templates/assistant_create.jinja.html @@ -1,4 +1,4 @@ -{% from "macros.jinja.html" import information %} +{% from "macros.jinja.html" import information, render_footer %} {% extends "admin/model/create.html" %} {% block body %} @@ -6,5 +6,5 @@ {{ super() }} - {{ footer|safe }} + {{ render_footer(footer) }} {% endblock %} diff --git a/advlabdb/templates/assistant_details.jinja.html b/advlabdb/templates/assistant_details.jinja.html index a5a6493..2889665 100644 --- a/advlabdb/templates/assistant_details.jinja.html +++ b/advlabdb/templates/assistant_details.jinja.html @@ -1,4 +1,4 @@ -{% from "macros.jinja.html" import information %} +{% from "macros.jinja.html" import information, render_footer %} {% extends "admin/model/details.html" %} {% block body %} @@ -6,5 +6,5 @@ {{ super() }} - {{ footer|safe }} + {{ render_footer(footer) }} {% endblock %} diff --git a/advlabdb/templates/assistant_edit.jinja.html b/advlabdb/templates/assistant_edit.jinja.html index 3b5069c..eb39c90 100644 --- a/advlabdb/templates/assistant_edit.jinja.html +++ b/advlabdb/templates/assistant_edit.jinja.html @@ -1,4 +1,4 @@ -{% from "macros.jinja.html" import information %} +{% from "macros.jinja.html" import information, render_footer %} {% extends "admin/model/edit.html" %} {% block body %} @@ -6,5 +6,5 @@ {{ super() }} - {{ footer|safe }} + {{ render_footer(footer) }} {% endblock %} diff --git a/advlabdb/templates/assistant_list.jinja.html b/advlabdb/templates/assistant_list.jinja.html index 45117d9..1abaf5d 100644 --- a/advlabdb/templates/assistant_list.jinja.html +++ b/advlabdb/templates/assistant_list.jinja.html @@ -1,4 +1,4 @@ -{% from "macros.jinja.html" import information %} +{% from "macros.jinja.html" import information, render_footer %} {% extends "admin/model/list.html" %} {% block body %} @@ -6,5 +6,5 @@ {{ super() }} - {{ footer|safe }} + {{ render_footer(footer) }} {% endblock %}