I have some classes in my app engine project
class First(db.Model):
count = db.IntegerProperty()
class Second(db.Model):
first = db.ReferenceProperty(First)
class SecondForm(djangoforms.ModelForm)
class Meta:
model = Second
The SecondForm model generates a really nice drop down menu in the template when rendered but it currently displays all the Models of type first. I was wandering if anyone had an elegant strategy allow conditions to be placed on the objects returned (such as to first.count > 10) to reduce the number of objects that will be rendered in the drop down list.
Thanks,
Richard