Django application to rate objects
Project description
Django Kaleidos Rate is a django application for rate objects.
Configuration
Configure the app in your setting INSTALLED_APPS:
INSTALLED_APPS = [ ... krate, ... ]
DBRateHandler configuration
configure the dbratehandler, for example:
INSTALLED_APPS = [ ... krate.ratehandlers.dbratehandler, ... ]
Configure the rate handler on settings.py, for example:
KRATE_RATE_HANDLER = "krate.ratehandlers.dbratehandler.DBRateHandler"
If you want to have an copy of the average rate stored in the models add the KRateableMixin to your models, for example:
from krate.ratehandlers.dbratehandler.models import KRateableMixin class MyModel(models.Model, KRateableMixin): ... # My model definition...
If you want to show and manage the valorations of the objects in the admin panel add a new inline to your models admin classes, for example:
from django.contrib.contenttypes.generic import GenericTabularInline from krate.ratehandlers.dbratehandler.models import ObjRate, ObjRateAggregate class ObjRateInline(GenericTabularInline): model = ObjRate class ObjRateAggregateInline(GenericTabularInline): model = ObjRateAggregate class MyModelAdmin(admin.ModelAdmin): model = models.MyModel inlines = [MyOtherInlines, ..., ObjRateAggregateInline, ObjRateAggregateInline]
Usage
Now you can use rate_object in your views to store the rate from users, and use the {% krate object %} and {% mykrate request_or_user object %} to get the average rate, and my own rate.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-krate-0.0.1.tar.gz
.
File metadata
- Download URL: django-krate-0.0.1.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb2de11834ff64f8825590ebde5b0cbbf020afe3bde59de548f5b63f2eddf119 |
|
MD5 | 988fa720b2cd0b2e5bb04618cdfdd1f3 |
|
BLAKE2b-256 | 1669416c61eff30276f4205a48cef80241d1985da72e3012282f068fc6603631 |