I'm creating something similar to a social poll application. I need the site to remember and prevent users from voting multiple times on each poll, so I figured I would create a new SubmittedPoll model like described in this thread (anonymous users are not a concern): http://groups.google.com/group/django-users/browse_thread/thread/734fc2fe31386593/f377090e34d1a397?lnk=gst&q=vote+once&rnum=4#f377090e34d1a397
In addition, users will be able to "digg" each poll as well as vote on what category it should belong to. All three of these actions is only allowed once per user, and won't necessarily happen simultaneously (or at all). What's the best way to do this? Should I create three separate models to keep track of votes: SubmittedPoll, SubmittedDigg, and SubmittedCategory? Or is there a more efficient way to do this? Any advice is appreciated. Thanks in advance! --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---

