Hi is possible to store a value of a field in a proxy model I explain how models are
class Model1(models.Model): title = models.Charfield(blabla) class Model2(models.Model): name = models.CharField(blabla) fk_field = models.FK(Model1) and then important thing class ItemModel(Model1) class Meta: proxy = True def save(self, *args, **kwargs): # I would like to do something like that is possible? #what would be the right thing to do? *self.title = Model2.name* super(ItemModel, self).save(*args, **kwargs) will be possible to do that?? someone could explain if possible!! yes or not :/ thank -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.