Please do not crosspost questions to both django-developers and
django-users: pick the right list and send the question there. Questions
about using Django, such as this one, belong on django-users.
Karen
--
You received this message because you are subscribed to the Google Groups
"Django devel
Hello All,
I am newbie in django and I will very thankful to you if you help me
in this regard.
I want to pass list of fields from view to Meta class of FormModel.
Please check this example.
view.py:
fields = [name, email, phone]
individual_form = IndividualForm(fields)
forms.py
class IndF