Changes between Initial Version and Version 1 of Ticket #24348


Ignore:
Timestamp:
Mar 3, 2015, 1:07:28 PM (9 years ago)
Author:
Tim Graham
Comment:

I am not quite sure the use case you are describing. Can you provide step by step instructions to reproduce the behavior that no longer works or a test for Django's test suite that passes on 1.6, but fails in 1.7+?

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #24348

    • Property Easy pickings unset
  • Ticket #24348 – Description

    initial v1  
    1 The szenario is to redirect the user to the change_view to review changes to an existing object bevore saving. For this the data for the changed fields needs to be passed on via GET-Parameters. This still works for "add" but no longer works for "change".
     1The scenario is to redirect the user to the change_view to review changes to an existing object before saving. For this the data for the changed fields needs to be passed on via GET-Parameters. This still works for "add" but no longer works for "change".
    22
    33This worked/existed until 1.6 but no longer works in 1.7. I suspect this is related to the introduction of ModelAdmin.get_changeform_initial_data() method and the cleanup/optimization that came with it.
Back to Top