Django-nonrel form field for ListField
I'm experimenting with django-nonrel on appengine and trying to use a djangotoolbox.fields.ListField to implement a many-to-many relation. As I read in the documentation a ListField is something that you can use to make a workaround for djamgo-nonrel not supporting many-to-many relations. This is an excerpt from my model: class MyClass(models.Model): field = ListField(models.ForeignKey(AnotherClass)) So if I am getting this right I am creating a list of foreign keys to another class to show a relationship with multiple instances of another class With this approach everything works fine ... No