fix: move page_scripts block outside page_content in admin/users.html #29
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/static-cache-bust-and-template-blocks"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
admin-users.jswas being rendered twice.once inline inside
page_contentand once via the layout's scripts block because{% block page_scripts %}was nested inside{% block page_content %}Jinja2 was rendering admin-users.js twice — once inline inside page_content and once via the layout's scripts block — because {% block page_scripts %} was nested inside {% block page_content %}.