Tagged Questions

1
vote
2answers
231 views

How do we override the choice field display of a reference property in appengine using Django?

The default choice field display of a reference property in appengine returns the choices as the string representation of the entire object. What is the best method to override this behaviour? I tried ...
0
votes
2answers
50 views

GAE: Using properties for keys() in ModelChoiceProperty boxes

I have a model User which appears as a ReferenceProperty in another model, Group. When I create a form for Group, using Meta, the form's values contain lots of generated strings. I'd like to stop ...