Greg wrote: > Is there a way to specify a _subset_ of the fields in a model for > the ChangeManipulator to operate on?
You can set editable=False on those fields. Alternatively, if you use your custom views is to pass "follow" parameter in a manipulator constructor: manipulator = Model.ChangeManipulator(follow = { 'field1': False, 'field2': False, }); This way you can edit one set of fields with one form and others in another. AFAIK this is not changed in magic-removal (but anyway do convert your code as soon as possible! :-) ) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---