I would like to use the django contrib.admin pages to edit my models, but call individual change page from my own views, an then return there after user clicks \"save\".
django.contrib.admin.options.ModelAdmin
objects have a response_change method which you can override in a subclass to determine the response which should be returned after an object has been successfully saved - you could override this to return an appropriate HttpResponseRedirect
for the object which was just saved.