views:

17

answers:

1

I am attempting to change the redirected for the django admin save button. What I pasted below works on saving an already existing entry (updating) but not on saving a new one. Any thoughts?

def change_view(self, request, object_id, extra_context=None):
    result = super(TodoAdmin, self).change_view(request, object_id, extra_context)
        if not request.POST.has_key('_addanother') and not request.POST.has_key('_continue'):
            result['Location'] = "/"
    return result
A: 

I think you will have to modify add_view the same way you did change_view, unless i am not understanding the question correctly.

rebus
Yup that was it... It's been one of those days.... Thanks!
Dronestudios