Figure out where to redirect after the 'Save' button has been pressed when editing an existing object.
(self, request, obj)
| 1795 | return self._response_post_save(request, obj) |
| 1796 | |
| 1797 | def response_post_save_change(self, request, obj): |
| 1798 | """ |
| 1799 | Figure out where to redirect after the 'Save' button has been pressed |
| 1800 | when editing an existing object. |
| 1801 | """ |
| 1802 | return self._response_post_save(request, obj) |
| 1803 | |
| 1804 | def response_action( |
| 1805 | self, request, queryset, action_location=ActionLocation.CHANGE_LIST |
no test coverage detected