GithubHelp home page GithubHelp logo

django-reviews's Introduction

django-reviews

Description

A pluggable Django review app.

Easily integrate reviews in your Django models, including these features:

  • Review and Rating: Authenticated users can post Reviews of a model including a review text area and a score ()
  • Vote on a Review: Allows users to vote for or against a Review if it was helpful to them (e.g. "Was this review helpful to you? Yes or No"). Votes store the user's IP address, user (if they are authenticated), whether they liked the review or not

Usage

  1. Install django-reviews:

     pip install -e git://github.com/danawoodman/django-reviews.git#egg=django-reviews
    
  2. Put reviews in your INSTALLED_APPS tuple in settings.py:

     INSTALLED_APPS = (
         #...
         'reviews',
         #...
     )
    
  3. Run syncdb:

     ./manage.py syncdb
    
  4. Put reviews in your models:

    from reviews.models import ReviewedItem

    class Product(models.Model): #...other fields here... reviews = generic.GenericRelation(ReviewedItem)

Now you can use all the features of the Review app on your model.

Manager methods

Credits

Copyright © 2011 Dana Woodman (email me).

Dependencies

None.

To-do

  • Generic views for adding a Review/Vote.
  • Write tests (someday...)

Please feel free to fork the repo and add these features if you feel up to it.

License

Released under an MIT license. See the LICENSE file for more information.

django-reviews's People

Contributors

danawoodman avatar siovene avatar

Stargazers

Yan Aung avatar  avatar David Francisco avatar

Watchers

James Cloos avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.