On Aug 6, 6:38 pm, Asinox <asi...@gmail.com> wrote: > Hi guys, i need a litter help, i know that if i want a Form from Model > i need to use ModelForm, but im lost with something... i have a view > that render a Form (ModelFrom) and save this, but now i need to use > the funcion SAVE in the Model (for use in the admin)... but im > lost... bcz in the view form i have a litter code saving some data > like Date, etc... in this way: > > obj = form.save(commit = false) > > obj.pub_date = datetime.now > > ----------- > > but now i need to know if the SAVE function need to be in the both > place's (model and view function).... sorry i need a litter sample... > > Thanks and sorry
I don't understand your problem. You've used form.save with commit=False to create an unsaved model instance, then changed the pub_date. Now all you need to do is obj.save() to save it to the database. -- DR. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---