I have a Django application with two models: the first is django.contrib.auth.User , and the second is a Product created by me.
For each product, I would add comments, so each registered user can insert a comment for each product.
I see django.contrib.comments there, but this is probably for blog-like sites where each user can leave a comment as well if they are not registered. I would write a comment form only for textarea to record a comment, and the user is automatically configured to request.user .
Should I write a comment system from scratch?
source share