django-nested-admin
django-nested-admin copied to clipboard
Django admin classes that allow for nested inlines
So I have 3 nested models Subjects > Sections > Topics This package is what I need to present all of these in one single admin page and in my...
HI, im getting this error ... `line 61, in __getattr__ return ModuleType.__getattribute__(self, name) AttributeError: module 'nested_admin' has no attribute 'SortableHiddenMixin` here my code: `class ReportSectionFieldInline(nested_admin.SortableHiddenMixin, nested_admin.NestedTabularInline): model = ReportSectionField extra...
Django-suit was great... ------------------------------- Using `django-suit` and *SortableModelAdmin*/*SortableTabularInline*, it is possible to sort objects in the admin interface's changlelist view and sort inlines, provided that a **sortable** attribute is provided...
It's great that nested admin works with Grappelli, but IMHO Django Jazzmin looks much nicer than Grappelli: https://github.com/farridav/django-jazzmin It would be outstanding if nested admin would be made to work...
When i drag and drop inlines with nested_admin.SortableHiddenMixin i get errors on empty extra forms after saving form ! 
```class InlineModeInlineAdmin(nested_admin.NestedTabularInline): model = InlineModel description = "Inline Description" fields = ["name"] extra = 0 class ParentInlineModeInlineAdmin(nested_admin.NestedTabularInline): model = ParentInlineModel description = "Parent Description" extra = 0 max_num = 3...
We've been planning a move to Django 4.0 and haven't run into any showstoppers yet, however, on our admin pages, we've seen some unnecessary text showing up since the update....
I unfortunately have to deal with legacy tables that are linking tables without a pk. The package django-viewflow==2.0.0a2 allows us to create a virtual field that is a composite of...
I have a polymorphic model `Question` with a submodel `OpenQuestion`. I use the following `InlineAdmin`: ```python class QuestionInline(SortableHiddenMixin, NestedStackedPolymorphicInline): model = Question class OpenQuestionInline(SortableHiddenMixin, NestedStackedPolymorphicInline.Child): model = OpenQuestion fields =...
After an inline drag and drop, django-autocomplete-light select2 autocomplete field will revert to select-box interface (<select>). This does not happen with django [ModelAdmin.autocomplete_fields](https://docs.djangoproject.com/en/4.0/ref/contrib/admin/#django.contrib.admin.ModelAdmin.autocomplete_fields) django-autocomplete-light==3.8.2 django-nested-admin==3.4.0 Before After drag and drop