Re: multiple modelforms for model

2009-06-05 Thread Daniel Roseman
On Jun 5, 12:08 am, adrian wrote: > I need to show Telephone and Address modelforms in the middle of > another big form, > so I decided to organize the big form into smaller modelforms and > display each in a separate fieldset. > > This works well until the next time I clear the DB and run syncdb

Re: multiple modelforms for model

2009-06-04 Thread phred78
http://docs.djangoproject.com/en/1.0/topics/forms/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this grou

Re: multiple modelforms for model

2009-06-04 Thread phred78
You have to put these in a forms.py files inside your app. They are not database models, so syncdb is maybe ignoring the whole thing? Hope that helps. Fred On Jun 5, 12:08 am, adrian wrote: > I need to show Telephone and Address modelforms in the middle of > another big form, > so I decided to

multiple modelforms for model

2009-06-04 Thread adrian
I need to show Telephone and Address modelforms in the middle of another big form, so I decided to organize the big form into smaller modelforms and display each in a separate fieldset. This works well until the next time I clear the DB and run syncdb. At that point, syncdb completely ignores th