Re: Catching the autogenerated admin post

2011-09-29 Thread Jay Martin
Awesome, I think that's it. Much thanks. jay On Sep 29, 2011, at 6:31 PM, Andres Reyes wrote: > You could try doing your processing in the save_model method of ModelAdmin > > https://docs.djangoproject.com/en/1.3/ref/contrib/admin/#django.contrib.admin.ModelAdmin.save_model > > 2011/9/29

Re: Catching the autogenerated admin post

2011-09-29 Thread Andres Reyes
You could try doing your processing in the save_model method of ModelAdmin https://docs.djangoproject.com/en/1.3/ref/contrib/admin/#django.contrib.admin.ModelAdmin.save_model 2011/9/29 bazaarsoft > Hello - I'm new to Django and love what I see so far. I have the need > to

Catching the autogenerated admin post

2011-09-29 Thread bazaarsoft
Hello - I'm new to Django and love what I see so far. I have the need to "catch" the admin post for one of my models: essentially, the model contains a file and from the file I want to extract data for some of the other model fields that are required for that particular model. So, can I "break"