vote up 0 vote down star

I have Django Model with many fields which user must fill. If I'll create one ModelForm for this Model it will be big enough for one form. I want to split it using FormWizard. I think it's possible first to create forms dynamically and then create FormWizard using them.

Is this good approach or is there any better way?

flag

50% accept rate

1 Answer

vote up 0 vote down

To me it seems fine.

The approach for creating partial forms is written in the docs.

In short:

class PartialAuthorForm(ModelForm):
    class Meta:
        model = Author
        fields = ('name', 'title')

class PartialAuthorForm(ModelForm):
    class Meta:
        model = Author
        exclude = ('birth_date',)

Dynamic way of doing this would be:

def gimme_my_form(field_tuple):
    class MyForm(ModelForm):
        class Meta:
            model = MyModel
            fields = field_tuple
    return MyForm

Eventually you can also parametrize the model this way.

link|flag
Nope, I don't like that. It's not ok for my model, there would be at least 4 tabs each containing 10 (average) fields. – giolekva Nov 8 at 20:58
What is wrong with that? Please, specify what usage would you like. Then we can come up with a suiting approach. – Kugel Nov 9 at 2:33
OK I just realized you want a dynamic way, I edited my answer. – Kugel Nov 9 at 2:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.