You may change the save_model() method of corresponding AdminClass for that: e.g, to set the attribute 'a' of model 'Book' , write inside BookAdmin.save_model() something like this:
obj.a = form.cleaned_data['another_key'] * 2 obj.save() On Mar 6, 8:43 pm, Waldemar Kornewald <wkornew...@gmail.com> wrote: > On 6 Mrz., 14:13, Chris <chriss...@gmail.com> wrote: > > > I have a model that has a required attribute, but I want this > > attribute set to a calculated value based on the input from a form. So > > inside the save() method of my ModelForm class, I'm doing: > > > self.cleaned_data['requiredKey'] = 123 > > record = forms.ModelForm.save(self) --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---