You could do this in the save method. If the News_item is newly created,
it's id will not be set, so to assure it only happens on creation, you could
use this code:

if self.id is None:
    do your stuff...

Tino

On Thu, Mar 19, 2009 at 6:19 PM, Baxter <mail.bax...@gmail.com> wrote:

>
> Talking with Andy more on IRC, it looks like I can't do what I want to
> do, unless maybe there's some way to pass the request on to the signal.
>  >
>

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