> Did you read the line: > > Inline editing can be customised. rather than using > edit_inline=meta.TABULAR or meta.SOURCE, you can define a custom inline > editing mode. This is done by subclassing BoundRelatedObject?, and using > that class. eg edit_inline=HorizontalScroller?. > > You can look at the implemention of TabularBoundRelatedObject to see how > to do it. Basically, override the template_name() method IIRC.
Oops, yeah, I noticed that line right after I sent my last message. So now I'm creating a subclass of TabularBoundRelatedObject in one of my own template files that just overrides template_name and includes this: NEWTABULAR = len(bound_related_object_overrides.keys()) bound_related_object_overrides[NEWTABULAR] = NewTabularBoundRelatedObject Since I want to keep all code modifications in my own application code, how do I get the admin change_form template to see this code? Do I add my own change_form template that inherits from the admin change_form and just has an extra include statement? Thanks for all the help, Edgars and Robert. Colleen