Is it possible to use something similar to the inline relational items from the Django admin to represent embedded models in a ListField?

For Example, I've got the following models:

class CartEntry(model.Model):
    product_name=model.CharField( max_length=20 )
    quantity = model.IntegerField()

class Cart(model.Model):
    line_items = ListField(EmbeddedModelField('CartEntry'))

I've tried using the standard inlining, but I know it's not right:

class CartEntryInline( admin.StackedInline ):
    model=CartEntry

class CartAdmin(admin.ModelAdmin)
    inlines=[CartEntryInline]

But obviously that doesn't work, since there's no foreign key relation. Is there any way to do this in django-nonrel?

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.