Re: Trying to reuse models and forms

2007-12-12 Thread Kirk Strauser
On Wednesday 12 December 2007, l5x wrote: > form_for_instance? Check: > http://www.djangoproject.com/documentation/newforms/#generating-forms-for >-models That's only in the SVN version, but if we have to move from .96 to SVN to get it then so be it. -- Kirk Strauser signature.asc Description:

Re: Trying to reuse models and forms

2007-12-12 Thread l5x
form_for_instance? Check: http://www.djangoproject.com/documentation/newforms/#generating-forms-for-models --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to dj

Trying to reuse models and forms

2007-12-12 Thread Kirk Strauser
I have a user profile model that gets accessed from the admin section of my site: class UserProfile(models.Model): MARKETS = [('B', 'Both'), ('D', 'Domestic'), ('I', 'International')] market = models.CharField(maxlength=1, choices=MARKETS, core=True) When v