Changes between Initial Version and Version 4 of Ticket #14938
- Timestamp:
- Jan 4, 2011, 1:18:03 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14938
- Property Has patch set
- Property Needs tests set
- Property Milestone → 1.3
- Property Patch needs improvement set
- Property Triage Stage Unreviewed → Accepted
-
Ticket #14938 – Description
initial v4 1 1 '''What steps will reproduce the problem?''' 2 1. go to the admin change form of an instance of a model class with both the "save as" feature enabled, and a TabularInline for relate items. 3 2. change the original instance 4 3. add a new related instance using the TabularInline 2 3 1. go to the admin change form of an instance of a model class with both the "save as" feature enabled, and a TabularInline for relate items. 4 2. change the original instance 5 3. add a new related instance using the TabularInline 5 6 6 7 '''What is the expected output? What do you see instead?''' 8 7 9 A new instance should be created, a copy of all the related instances should be created and a new instance for any item added in the TabularInline should be created. 8 10 Instead the original item is created, all the pre-existing instances are copied but the new ones are not created. … … 11 13 12 14 '''Additional information''' 15 13 16 django version: 1.2.3 14 17 locale: it-IT 15 18 16 this may also be related to [http://code.djangoproject.com/ticket/4045]19 this may also be related to #4045