Skip to main content

Reviewable provides simple, customizable reviews for any of your Django models. The templates for each of your reviewable models can be customised with ease.

Quick Start

$ pip install django-reviewable
  1. Add “Reviewable” to your INSTALLED_APPS setting:

INSTALLED_APPS = [
    ...
    'Reviewable',
    ...
]
  1. Include the Reviewable URLconf in your projects urls.py:

url(r'^reviews/', include('Reviewable.urls', namespace='Reviewable')),
  1. Run python manage.py migrate

  1. Add the mixin Reviewable to any model you want to be reviewable.

...
from Reviewable.models import Reviewable
...

class ReviewableModel(models.Model, Reviewable):
    ...

Custom Templates

Reviewable allows you to customise the templates for each reviewable model. Furthemore, the reviewable object is magically made available in the template context.

For example:
  1. You have a model called Hotel in an app called Hotel

  2. You want a custom template for the review creation view

  3. You would add a template in Hotel/templates/Hotel called hotel_review_create.html
    • Note: This the template name has to be in camel case and all lower case

  4. The hotel object is made available in the template context by the usual {{ hotel }} tag

  5. This can be repeated for templates for all views: hotel_review_list.html, hotel_review_update.html, hotel_review_confirm_delete.html and hotel_review_detail.html

Template Tags

Reviewable provides one simple but useful template inclusion tag that will include controls for your reviewable object.

To use this just load in the template tag:

{% load reviewable %}
...
{% show_review_controls reviewable_object %}

The template for the inclusion tag is very basic so it is a good idea to override it in the usual Django fashion. The name of the template is “Reviewable/__review_controls.html”.

Post Delete Signals

Deletion of a reviewable object won’t automatically cause a cascade delete of all of the objects reviews. Hence, it is a good idea to use the post delete signal somewhere in your app as below:

from MyApp.models import ReviewableModel
from django.db.models.signals import post_delete
...

post_delete.connect(ReviewableModel.delete_reviews, sender=ReviewableModel)

Settings

All settings are shown below with their defaults.

REVIEW_RATING_CHOICES

REVIEW_RATING_CHOICES=(
    (1, '1 Star'),
    (2, '2 Star'),
    (3, '3 Star'),
    (4, '4 Star'),
    (5, '5 Star')
)

REVIEW_DELETE_SUCCESS_URL

REVIEW_DELETE_SUCCESS_URL='/'

REVIEW_STREAM_ENABLED

Reviewable can utilise GetStream if required. This would mean reviews are automatically published to your GetStream.io feed. See https://github.com/GetStream/stream-django for more information

REVIEW_STREAM_ENABLED=False

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-reviewable-0.3.9.2.tar.gz (7.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_reviewable-0.3.9.2-py2-none-any.whl (10.9 kB view details)

Uploaded Python 2

File details

Details for the file django-reviewable-0.3.9.2.tar.gz.

File metadata

File hashes

Hashes for django-reviewable-0.3.9.2.tar.gz
Algorithm Hash digest
SHA256 cfdcea00ec43a7b50fdc014a3607d97ffdf1b1f345a696d8899f89b9b293a46f
MD5 4b8bea2c1971d62aaca062b06e1ffc16
BLAKE2b-256 20d9bd51fe46600c3d4d07488e7e6f940fa973b5ef56a875eaf03f61f11c5391

See more details on using hashes here.

File details

Details for the file django_reviewable-0.3.9.2-py2-none-any.whl.

File metadata

File hashes

Hashes for django_reviewable-0.3.9.2-py2-none-any.whl
Algorithm Hash digest
SHA256 3690c20a44d68198e7c02d68ee8854f8803dbe54528cd6630b2f8bb5794349e7
MD5 885cdeccf4927adc8f125b1ecedfa492
BLAKE2b-256 772c82469238e8cec295bf94242c3c250817c5aa21ab100c69d930a05a277833

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.3.9.2 This release

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page