From f99e5cf3e41f919736feb5c90d441a53ce710884 Mon Sep 17 00:00:00 2001 From: Benjamin Balder Bach Date: Fri, 13 Jun 2025 19:18:15 +0200 Subject: [PATCH] Add form.media to form This will probably come in handy... I've tested this and it was output correctly. And the JS was allowed by the browser. However, I couldn't use it for anything because Django's AdminSplitDateTime widget is loaded with window.load event, and changing it seemed to require copying the entire JS file. --- .../templates/admin/django_modal_actions/modal_actions.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/django_modal_actions/templates/admin/django_modal_actions/modal_actions.html b/django_modal_actions/templates/admin/django_modal_actions/modal_actions.html index fe58c1d..dd6b2f3 100644 --- a/django_modal_actions/templates/admin/django_modal_actions/modal_actions.html +++ b/django_modal_actions/templates/admin/django_modal_actions/modal_actions.html @@ -36,3 +36,6 @@

{{ action_name }}

{% endif %} +{% if form %} + {{ form.media }} +{% endif %}