Metadata-Version: 1.1
Name: django-vote
Version: 1.0
Summary: A simple Django app to conduct vote.
Home-page: http://www.example.com/
Author: shellfly
Author-email: shell0fly@gmail.com
License: BSD License
Description: =====
        Vote
        =====
        
        Vote is a simple Django app to conduct vote for each model
        
        
        Quick start
        -----------
        
        1. Add "vote" to your INSTALLED_APPS setting like this::
        
           INSTALLED_APPS = (
           ...
           'polls',
           )
        
        2. Include the polls URLconf in your project urls.py like this::
        
           2. Run `python manage.py syncdb` to create the vote models.
        
        
        3. Declare vote filed to the model you want to vote::
           from vote.manager import VotableManager
        
           class ArticleReview(models.Model):
               ...
               votes = VotableManger()
        
        4. Use vote API::
        
           review = ArticleReview.get(pk=1)
           review.up(user)
           review.down(user)
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
