django-ratings
django-ratings copied to clipboard
Pluggable rating fields in Django.
Hello, after doing all the necessary settings. When I put the below template tag in my template, I can't see any rating objects that user can click on to rate....
Dear DCramer Sorry for disturbance, I don't know how to delete wrong issue. Thanx
Reading the django docs on custom tags i figured I should do {% load ratings %} however this doesn't work. How are the tags loaded? The name to load should...
Fields in new versions of django can receive a connection and prepared argument. I believe this is for multi-db. Until django-ratings accepts these variables, django will throw a DeprecationWarning using...
My models all extend my custom model class which id is a CharField not a PositiveIntegerField like the Django's default django.db.models.Model . So, when I try to add a vote,...
Hy! I'm new to South, so if this is something of my lack of knowledge, I apologize. When I'm running ./manage.py migrate, I have the following error popping from your...
myinstance.rating.add(score=1, user=request.user, ip_address=request.META['REMOTE_ADDR'], request.COOKIES) # last param is optional - only if you use COOKIES-auth -- non keyword arg.
When run ./manage.py test djangoratings I receive the following 3 times DatabaseError: no such table: djangoratings_ratingtestmodel I see that this model is defined in tests.py but can't figure out when...
``` from djangoratings.fields import RatingField class MyModel(models.Model): rating = RatingField(range=1, can_change_vote=True, can_delete_vote=True) TypeError: __init__() got an unexpected keyword argument 'can_delete_vote' ``` I get this error when trying to enable `can_delete_vote`...
this is not an issue - I´m just not sure about the implementation of "weight" (I probably just don´t understand it). with IMDB (for example), the weight refers to the...