On Mar 24, 4:23 pm, mwebs <mic...@m-websolutions.de> wrote:
> Hello,
>
> I have a more complex dialog within the django admin, which requires a
> redirect to an intermediate page, when a certain model is saved. It
> seems as the django ModelAdmin does not provide any hooks for this
> purpose.
>
> I found a workarround 
> here:http://joshourisman.com/2008/10/27/modifying-django-admin-redirects-a...
>
> But it this doesnt work for me, as I definitvely need the id of the
> object that just has been saved.
> So what I need is:
> - after model save --> redirect to another view
>
> Any ideas?
>
> Thanks
> - Toni

What is `object_id` in the parameters to that function, if not for the
id of the relevant object?

In any case, you'd be better off overriding `response_change` and
`response_add`, which deal specifically with what to do after saving
on a change or add respectively. See the originals in
django.contrib.admin.options.
--
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-us...@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