views:

66

answers:

2

Hello,

I want to implement a commenting system for some pages by using the build-in commenting framework of Django. The only addition to the default commenting framework is that other registered users can up/down vote comments (one time allowed indeed), just like Digg or Reddit style.

I have found RedditStyleVoting however it seems out of date and not really covering what I am looking for.

I will be grateful for any suggestion

A: 

You could use the django-voting application and allow vote for Comment objects.

Olivier
A: 

Maybe you can use the django-ratings app. It's a generic ratings module and actively developed.

aeby