Opened 6 years ago
Last modified 6 years ago
#29815 closed Bug
InlineModelAdmin ignores media files from widgets included in the used form — at Initial Version
Reported by: | Sławomir Domagała | Owned by: | nobody |
---|---|---|---|
Component: | contrib.admin | Version: | 2.1 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
I have
class OpenSelectMultiple(Widget): template_name = 'admin/forms/widgets/open_select.html' option_template_name = 'django/forms/widgets/select_option.html' class Media: css = ('1.css',) js = ('1.js', '2.js') class OpenMultipleChoiceField(Field): hidden_widget = MultipleHiddenInput widget = OpenSelectMultiple ... class NotificationFilterForm(forms.ModelForm): prefixes = OpenMultipleChoiceField(required=False) class NotificationFilterInline(admin.TabularInline): extra = 0 model = NotificationFilter form = NotificationFilterForm
Those files aren't included in the rendered page.
Note:
See TracTickets
for help on using tickets.