#9693 closed (worksforme)
Custom Model.save() don't change relational data when editing via admin (probably any other forms too)
Reported by: | anonymous | Owned by: | nobody |
---|---|---|---|
Component: | Forms | Version: | 1.0 |
Severity: | Keywords: | ||
Cc: | dgouldin@… | Triage Stage: | Accepted |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Consider following models:
class A(models.Model): name = models.CharField(max_length = 100) class B(models.Model): name = models.CharField(max_length = 100) related = models.ForeignKey(to = A, null = True, blank = True) def save(self): if not self.name.startswith('@'): self.name = '@' + self.name # this will work always if self.related and self.related.name.startswith('@'): self.related = None # won't work when editing via admin form super(B, self).save()
This illustrates that submitting the data via admin interface will always override relational changes in the custom Model.save() method. Other fields, however, are changed as expected.
Calling save() under some other circumstances will always change relational data as expected.
Any glue how to fix it? Thanks.
Change History (5)
comment:1 by , 16 years ago
Component: | Uncategorized → Forms |
---|
comment:2 by , 16 years ago
milestone: | → 1.1 |
---|---|
Triage Stage: | Unreviewed → Accepted |
comment:3 by , 16 years ago
Cc: | added |
---|
comment:4 by , 16 years ago
Resolution: | → worksforme |
---|---|
Status: | new → closed |
I'm not able to duplicate this either. Please reopen with more details if this is still happening.
Note:
See TracTickets
for help on using tickets.
I could not reproduce this behavior. Can anybody else?