class Topic(models.Model):
    title = models.CharField(max_length=100)
    body  = models.TextField(_('body'), max_length=TEXT_MAX_LENGTH)
    user  = models.ForeignKey(User, related_name='topic_user',
editable=False)
    ...

I use 'django.contrib.comments' to reply a topic. How to get topics
user replied?

Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to