{% extends "dlux/base.html" %}
{% load dlux_tags %}
{# Form assets are now loaded globally (once) from base.html so dynamic-modal #}
{# forms work on any page. These include_once calls dedupe against that — they #}
{# stay as an explicit record that form pages depend on these assets and as a #}
{# safety net should the global load ever be removed. #}
{% block extra_head %}
{% include_once "dlux/forms/assets_head.html" %}
{{ block.super }}
{% endblock %}
{% block scripts %}
{% include_once "dlux/forms/assets_scripts.html" %}
{{ block.super }}
{% endblock %}