Tagged Questions
The django-voting tag has no wiki summary.
3
votes
1answer
555 views
Django threadedcomments and voting
I'm using django-threadedcomments and django-voting in my project to achieve a Reddit-like comments voting system.
I've set everything up correctly and I'm able to successfully record votes for each ...
3
votes
1answer
330 views
Using django and django-voting app, how can I order a queryset according to the votes of each item?
(I'm new to python and django so please bear with me for a second. I apologise if this has been answered elsewhere and couldn't find it)
Let's say I have a Link model and through the django-voting ...
2
votes
3answers
278 views
How to restrict users voting on their own model
I am using django-voting as a voting application for two of my models. Those both models have fields "author".
How can I restrict a user from voting on a model that has this particular user set as ...
1
vote
2answers
459 views
django-voting combined with paginator: TypeError object of type 'generator' has no len()
UPDATE:
All I am trying to do is get the list of objects based on their voting score and send it to the template. If you have used django-voting before please help me figure this one out. I need a ...
0
votes
0answers
33 views
Cookies not working with an AJAX call from jQuery to Django
I have a Django site using a 5-star rating system for voting (I use django-ratings) and I would like to store the votings of the users with AJAX calls.
On the client side I have a JavaScript function ...
0
votes
1answer
39 views
How to add attribute '_meta' to an object?
I'm trying to add the django-voting app to my project. I don't know how to use it in my templates, so I'm adding a new template tags for voting up or down when an user click in buttons. I don't know ...
0
votes
1answer
154 views
Django converting generator to list
I am using django-voting package and have been trying to get it's manager get_top() to work. I've stumbled upon one problem - it produces generator (from which actually I need to extract data to ...
0
votes
1answer
591 views
URL problem w/ code from a django-voting tutorial
I'm trying to use the django-voting tutorial from this blog:
http://new.justinlilly.com/blog/2008/nov/04/django-voting-a-brief-tutorial/
to get a simple up/down voting system working on an app of ...
0
votes
1answer
504 views
problem ordering by votes with django-voting
I have a model Post, and a model Vote. Vote (form django-voting) is essentially just a pointer to a Post and -1, 0, or 1.
There is also Tourn, which is a start date and an end date. A Post made ...