Thanks Daniel for reply

ill tell u my problem, this form work fine in the User Panel , but in
the Admin dont work.

exactly my problem:

i have a form... when the form is saved, im saving "pub_date" data in
another database table, that is fine in the User Panel, but in the
Admin panel don't work. i know that im lost with overriding the Save()
function, bcz i dont know where exactly ill put this, im reading
django doc's a lot, but im lost with this part.

Thanks



On Aug 6, 2:00 pm, Daniel Roseman <dan...@roseman.org.uk> wrote:
> 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
-~----------~----~----~----~------~----~------~--~---

Reply via email to