2

I am new to Django, I don't know a lot of them.

I am trying to build a comment and rating system for a blog in Django. There are some apps that I can use to achieve this(Comment and Rating)?

Please let me know.

Best Regards,

André
  • 24,706
  • 43
  • 121
  • 178

2 Answers2

1

At Eldarion, we've ended up building and using dialogos for all our comments on sites: https://github.com/eldarion/dialogos

And for ratings are extending agon: https://github.com/eldarion/agon

While agon was originally just about giving people points, it can also be used to give arbitrary objects points and this can be used for both voting and rating.

Both of these apps will have extensive use in the next release of Pinax.

James Tauber
  • 3,386
  • 6
  • 27
  • 37
0

The django.contrib.comments that comes with django works well, even if it is rather simplistic. Seems to be extendable for more elaborate needs, though.

Rasmus Kaj
  • 4,224
  • 1
  • 20
  • 23
  • Thanks for the reply. Django-ThreadedComents(http://pypi.python.org/pypi/django-threadedcomments) is an alternative to Django Comments? Django-ThreadedComents have moderation like Django Comments? – André Aug 10 '11 at 22:41
  • I haven't looked at django-threadedcomments, but it seems to be an extension of django.contrib.comments, so I assume it has at least the same (basic) support for moderation as django.contrib.comments has. – Rasmus Kaj Aug 11 '11 at 07:59