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:
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
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
3 matches
Mail list logo