When using a modelform there are some ways to get you where you want. You can get your form using request.POST. If it validates you can save it like this creating a model.
record = form.save(commit=false) record.key = 123 record.save() Now, I cant remember but I believe that if you add missing key data in cleaned method, giving the name django would expect, you would be able to just save the form. You could also just manually access the key field from the cleaned_data and apply it on the model. On 7 Mar., 18:13, Chris Spencer <chriss...@gmail.com> wrote: > On Fri, Mar 6, 2009 at 12:57 PM, rajeesh <rajeeshrn...@gmail.com> wrote: > > > 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() > > Won't this only effect admin? I'm looking for a general solution that > I can work into any form. > > Chris --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---