AlfredoBB / django-vote

Simple vote for django

Home Page:http://django-vote.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Django Vote

django-vote is a simple Django app to conduct vote for django model.

This project is inspired by django-taggit

Build Status Codecov PyPI version

Quick start

Install django-vote by pip

pip install django-vote

Add 'vote' to your INSTALLED_APPS setting like this

INSTALLED_APPS = (
  ...
  'vote',
)

Add VoteModel to the model you want to vote

from vote.models import VoteModel

class ArticleReview(VoteModel, models.Model):
    ...

Run migrate

manage.py makemigrations
manage.py migrate

Use vote API

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

# Up vote to the object
review.votes.up(user_id)

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

# Removes a vote from the object
review.votes.delete(user_id)

# Check if the user already voted the object
review.votes.exists(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.user_ids()


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

django-vote now requires Django 1.7 or greater. (for Django < 1.7, please install previous release django-vote==1.1.3)

About

Simple vote for django

http://django-vote.readthedocs.io

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 99.6%Language:HTML 0.4%