Changes between Initial Version and Version 1 of Ticket #2666
- Timestamp:
- Nov 26, 2006, 7:28:42 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2666 – Description
initial v1 1 1 Given something loseley like this 2 2 3 {{{ 4 #!python 3 5 class a(models.Model): 4 6 def save(self): … … 9 11 def save(self): 10 12 super(b, self).save() 13 }}} 11 14 12 15 when I edit an a in the admin and press save the save method is called. However if I edit the b objects inline the save method for a is not called even if there were changes made to the a object aswell, the object seems to be getting saved with the superclass' save method not the new redefined one.