I am working with an app that has several different models that are
connected to a central model via a ForiegnKey.

I'd like to display a certain inline based on a value from the central
model.

Ex.

model1
some_field
central = ForeignKey(CentralModel)

model2
some_field
central = ForeignKey(CentralModel)

CentralModel
type_field

In the admin:

if self.type == '1':
    inlines = [
        model1
    ]

else:
    inlines = [
        model2
    ]

I'm looking at overriding the get_formsets method but is taht the way
to go?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to