Changes between Initial Version and Version 4 of Ticket #14938


Ignore:
Timestamp:
Jan 4, 2011, 1:18:03 PM (13 years ago)
Author:
Ramiro Morales
Comment:

(reformatted description)

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #14938

    • Property Has patch set
    • Property Needs tests set
    • Property Milestone1.3
    • Property Patch needs improvement set
    • Property Triage Stage UnreviewedAccepted
  • Ticket #14938 – Description

    initial v4  
    11'''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
    56
    67'''What is the expected output? What do you see instead?'''
     8
    79A 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.
    810Instead the original item is created, all the pre-existing instances are copied but the new ones are not created.
     
    1113
    1214'''Additional information'''
     15
    1316django version: 1.2.3
    1417locale: it-IT
    1518
    16 this may also be related to [http://code.djangoproject.com/ticket/4045]
     19this may also be related to #4045
Back to Top