So, my goal is to be able to filter a ModelChoiceField queryset in my ModelForm to only include Places that request.user has created.
My ModelForm is simply:
I'm on an iPhone, but do this:
def get_form(self, form_class): form = super(MyView, self).get_form(form_class) form.fields['place'].querset = Place.... return form
Wow that was hard! No indention support!