About Combined Asset Media
When you have multiple forms or formsets with the same JavaScript widgets, you shouldn't include asset media separately in your template:
{{ form.media }}
{{ formset1.media }}
{{ formset2.media }}
This would duplicate the CSS files and JavaScripts and would cause double initialization of those shared widgets.
Instead, combine the media objects in the view as follows:
context = {
"form": form,
"formset1": formset1,
"formset2": formset2,
"combined_media": form.media + formset1.media + formset2.media,
}
and use the combined media in the template:
{{ combined_media }}
Tips and Tricks Programming Django 5.x Django 4.2 Django 3.2 Django 2.2
Also by me
Django Paddle Subscriptions app
For Django-based SaaS projects.
Django GDPR Cookie Consent app
For Django websites that use cookies.