On May 19, 5:03 am, Daemoneye
wrote:
>
> class People(forms.Form):
> HoldComments=models.ManyToManyField('Comment')
> class Comment(forms.Form):
> CommentWord=models.CharField(max_length=1)
>
> I've had these two tables, I'd want the people make a comment so I new
> p=comment
class People(forms.Form):
HoldComments=models.ManyToManyField('Comment')
class Comment(forms.Form):
CommentWord=models.CharField(max_length=1)
I've had these two tables, I'd want the people make a comment so I new
p=comment(CommentWord=Comment)in the view
but how can I sav
2 matches
Mail list logo