Skip to content

pushplataranjan/django-vote

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

95 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Djnago Vote

django vote is a simple Django app to conduct vote for each model

Build Status

Quick start

Install django-vote by pip

pip install django-vote

Add 'vote' to your INSTALLED_APPS setting like this

INSTALLED_APPS = (
  ...
  'vote',
)

Run python manage.py makemigrations vote to create the vote models.

Declare vote field to the model you want to vote

from vote.managers import VotableManager

class ArticleReview(models.Model):
    ...
    votes = VotableManager()

Use vote API

review = ArticleReview.objects.get(pk=1)

# Adds a new vote to the object
review.votes.up(user_id)

# Removes vote to the object
review.votes.down(user_id)

# Check if the user already voted the object
review.votes.exists(user_id)

# Returns all instances voted by user
Review.votes.all(user_id)

# Returns the number of votes for the object
review.votes.count()

# Returns a list of users who voted and their voting date
review.votes.users()

About

Simple vote for django

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%