Daniel,
thanks much. That was the problem.
Damn -- its so freakishly easy to miss such nasty little things when
you're over worked :-)
thanks again.
-pranav.
On Feb 26, 4:03 pm, Daniel Roseman
wrote:
> On Feb 26, 8:12 pm, "uno...@gmail.com" wrote:
>
>
>
> > I have the following model form:
On Feb 26, 8:12 pm, "uno...@gmail.com" wrote:
> I have the following model form:
>
> class EditProfileForm(ModelForm):
>
> class Meta:
> model = UserProfile
> exclude = ('user',)
>
> The corresponding model is:
>
> class UserProfile(models.Model):
>
> user = models.Foreign
On Feb 26, 3:12 pm, "uno...@gmail.com" wrote:
> I have the following model form:
>
> class EditProfileForm(ModelForm):
>
> class Meta:
> model = UserProfile
> exclude = ('user',)
>
> The corresponding model is:
>
> class UserProfile(models.Model):
>
> user = models.Forei
I have the following model form:
class EditProfileForm(ModelForm):
class Meta:
model = UserProfile
exclude = ('user',)
The corresponding model is:
class UserProfile(models.Model):
user = models.ForeignKey(User)
firstname = models.CharField(max_length=50,blank=True)
4 matches
Mail list logo