I have a Django application with two models: the first one is django.contrib.auth.User
and the second one is Product
, created by me.
For every product I would add the comments, so every User registered can insert a comment for every product.
I've see there's django.contrib.comments
, but probably it's for the blog-like sites, where's every user can leave a comment also if they're not registered. I would a comment form with only the textarea for write the comment and the user is automatically setted to request.user
.
Should I write the comments system from scratch?