Hi, I am in the same situation actually. Or almost, as I'll have only anonymous users.
I though about restricting votes based on IP addresses, but today, with NATs and all, that would be unfair for a lot of people. What I was planning to do is use the session framework. I will have in the sessions each poll the user has answered. Of course, a user could erase the cookies and vote again, but the idea is to avoid accidental voting and the temptation of easy cheating :-) But I am sure there must be a better way. Enjoy, G On 6/25/06, Vladimir Pouzanov <[EMAIL PROTECTED]> wrote: > > Hello all, > > I'm trying to extend polls app from tutorial and add a 'user already > voted' check. Can somebody suggest me a way to do that? My current > idea is to add some BLOB filed to polls model and add each voted user > id to list that will be pickled into that field. For anonymous users a > cookie > with poll id should be added. > > Not sure if the pickle/unpickle way is the best in terms of used > system resources and speed. Any other suggestions? > > -- > Sincerely, > Vladimir "Farcaller" Pouzanov > http://www.hackndev.com > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---

