tags:

views:

20

answers:

1

ala this page http://docs.djangoproject.com/en/dev/topics/forms/modelforms/#field-types

Basically, I have a bunch of model field objects, and I want to find the corresponding form field that django uses by default.

+3  A: 

It's set via the Field.formfield() method. The field classes themselves are defined under django/db/models/fields.

Ignacio Vazquez-Abrams
Beautiful! Will accept in 2 minutes when it lets me :\
Mark