/ Published in: Python
URL: http://affix.me
Expand |
Embed | Plain Text
class Comment(models.Model): comment_author = models.CharField(max_length=200) author_email = models.CharField(max_length=200) author_web = models.CharField(max_length=200) post_id = models.ForeignKey(Post) comment_content = models.TextField(max_length=500) def __unicode__(self): return self.comment_author
You need to login to post a comment.
