You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class ProductGroupInline(NestedStackedInline):
model = ProductGroup
extra = 1
prepopulated_fields = {'product_group_slug': ('product_group_name',)}
class SubcategoryInline(NestedStackedInline):
model = SubCategory
extra = 1
inlines = [ProductGroupInline]
prepopulated_fields = {'subcategory_slug': ('subcategory_name',)}
class CategoryAdmin(NestedModelAdmin):
inlines = [SubcategoryInline]
prepopulated_fields = {'category_slug': ('category_name',)}
In this sample prepopulated_fields work for SubcategoryInline, CategoryAdmin but not for ProductGroupInline
The text was updated successfully, but these errors were encountered:
In this sample prepopulated_fields work for SubcategoryInline, CategoryAdmin but not for ProductGroupInline
The text was updated successfully, but these errors were encountered: