Figure out where to redirect after the 'Save' button has been pressed when adding a new object.
(self, request, obj)
| 1788 | return HttpResponseRedirect(post_url) |
| 1789 | |
| 1790 | def response_post_save_add(self, request, obj): |
| 1791 | """ |
| 1792 | Figure out where to redirect after the 'Save' button has been pressed |
| 1793 | when adding a new object. |
| 1794 | """ |
| 1795 | return self._response_post_save(request, obj) |
| 1796 | |
| 1797 | def response_post_save_change(self, request, obj): |
| 1798 | """ |
no test coverage detected