Hi, I have problem with save_form, save_model, save_formset methods in Admin class admin.TabularInline.
class AAdmin(admin.TabularInline): model = A1 extra = 3 def save_form(self, request, form, change): print "form" return form.save(commit=False) def save_model(self, request, obj, form, change): print "model" obj.save() def save_formset(self, request, form, formset, change): print "formset" formset.save() class BAdmin(admin.ModelAdmin): inlines = [AAdmin] def save_model(self, request, obj, form, change): super(BAdmin, self).save_model(request, obj, form, change) When I save BAdmin in Admin Panel the method in AAdmin aren't called. Where is the problem? regards. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---