hi , i have a few questions about how to use django-ratings but i dont really understand a few things:
from djangoratings import RatingField class MyModel(models.Model): rating = RatingField(range=5) # 5 possible rating values, 1-5 that part is clear! then it comes to adding votes: myinstance.rating.add(score=1, user=request.user, ip_address=request.META['REMOTE_ADDR']) where should i use this? on my model? on the view? then it comes to accessing the information about the rating of an object: myinstance.rating.votes myinstance.rating.score i guess this is how i get the votes on the template? sry if the questions are stupid... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---