(Now that Django 1.1 is in candidate status on the release, this may be the right time to ask about it.)
I have searched everywhere for ways to extend the Django comment application to support authenticated comments. After reading the comment model several times, I found that ForeignKey before User already exists.
From django.contrib.comments.models :
class Comment(BaseCommentAbstractModel): """ A user comment about some object. """
It seems like I can't come up with a User setting. If I use comments as is, even if I'm authenticated, it still seems to need other fields. I assume that I should redefine the form and make it there? In addition, if I use User , I should ignore the fact that user_name , user_email and user_url will be empty and just extract this information from the corresponding profile model, fix it?
Although the answers can be quite trivial at the end, I am just surprised that it was not written or even spoken.
python comments django
Bryan veloso
source share