diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-01-22 06:12:24 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-01-22 06:12:24 +0000 |
| commit | c93d1932fec26fb4f13ee0259628307f46fff41d (patch) | |
| tree | 49dd12cc6b11885f7ebd268f81c033802b2dd886 | |
| parent | 259f083c24b4af2532821c76d3b3cb959be29fc9 (diff) | |
newforms-admin: Merged to [4387]
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@4388 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/newforms/models.py | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/django/newforms/models.py b/django/newforms/models.py index 7c6e6ad0ab..819e70d775 100644 --- a/django/newforms/models.py +++ b/django/newforms/models.py @@ -47,33 +47,42 @@ def make_instance_save(instance): return save_instance(self, instance, commit) return save -def form_for_model(model, form=BaseForm): +def form_for_model(model, form=BaseForm, formfield_callback=lambda f: f.formfield()): """ Returns a Form class for the given Django model class. Provide ``form`` if you want to use a custom BaseForm subclass. + + Provide ``formfield_callback`` if you want to define different logic for + determining the formfield for a given database field. It's a callable that + takes a database Field instance and returns a form Field instance. """ opts = model._meta field_list = [] for f in opts.fields + opts.many_to_many: - formfield = f.formfield() + formfield = formfield_callback(f) if formfield: field_list.append((f.name, formfield)) fields = SortedDictFromList(field_list) return type(opts.object_name + 'Form', (form,), {'fields': fields, '_model': model, 'save': model_save}) -def form_for_instance(instance, form=BaseForm): +def form_for_instance(instance, form=BaseForm, formfield_callback=lambda f, **kwargs: f.formfield(**kwargs)): """ Returns a Form class for the given Django model instance. Provide ``form`` if you want to use a custom BaseForm subclass. + + Provide ``formfield_callback`` if you want to define different logic for + determining the formfield for a given database field. It's a callable that + takes a database Field instance, plus **kwargs, and returns a form Field + instance with the given kwargs (i.e. 'initial'). """ model = instance.__class__ opts = model._meta field_list = [] for f in opts.fields + opts.many_to_many: current_value = f.value_from_object(instance) - formfield = f.formfield(initial=current_value) + formfield = formfield_callback(f, initial=current_value) if formfield: field_list.append((f.name, formfield)) fields = SortedDictFromList(field_list) |
