Daniele Procida wrote:
> I think this means that I need to add a routine to my admin.py so that
> when the user hits Save, it will also manually assemble the information
> and save it for the affected models. 
>
> Is that correct? If so, what is doing this called, so I can look it up
> in the documentation?
>   
It seems you want to run code at save-time with access to the user's 
selection for a certain field.

You can do this in the admin with ``ModelAdmin.save_model(...)``[1], but 
if you don't need access to the `request` object or direct access to the 
form being submitted you're better off doing something that will apply 
to all ``save()``s regardless of the view that displays them, like a 
``pre_save`` or ``post_save`` signal.

Regards,
Friðrik Már

[1] 
http://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.save_model
[2] 
http://docs.djangoproject.com/en/dev/ref/signals/#django.db.models.signals.pre_save

--~--~---------~--~----~------------~-------~--~----~
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