Add voting ability to Django models
pip install votesINSTALLED_APPS = ( ... 'votes', )from votes.managers import VotableManager class ArticleReview(models.Model): ... votes = VotableManager()
pip install votesINSTALLED_APPS = ( ... 'votes', )from votes.managers import VotableManager class ArticleReview(models.Model): ... votes = VotableManager()