Skip to main content

Reviewable

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

Release files for django-reviewable 0.3.9.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for django-reviewable 0.3.9.2
File Size Uploaded
django-reviewable-0.3.9.2.tar.gz 7.6 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for django-reviewable 0.3.9.2
File Interpreter ABI Platform
django_reviewable-0.3.9.2-py2-none-any.whl Python 2 none any Details

Total release size: 18.5 kB

Release files / django-reviewable-0.3.9.2.tar.gz

Download URL django-reviewable-0.3.9.2.tar.gz
Size 7.6 kB
Tags Source
SHA-256 checksum
How to use checksums
cfdcea00ec43a7b50fdc014a3607d97ffdf1b1f345a696d8899f89b9b293a46f
BLAKE2b-256 checksum
How to use checksums
20d9bd51fe46600c3d4d07488e7e6f940fa973b5ef56a875eaf03f61f11c5391
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / django_reviewable-0.3.9.2-py2-none-any.whl

Download URL django_reviewable-0.3.9.2-py2-none-any.whl
Size 10.9 kB
Tags Python 2
SHA-256 checksum
How to use checksums
3690c20a44d68198e7c02d68ee8854f8803dbe54528cd6630b2f8bb5794349e7
BLAKE2b-256 checksum
How to use checksums
772c82469238e8cec295bf94242c3c250817c5aa21ab100c69d930a05a277833
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.3.9.2 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page