Just as a quick reply, check out the Comment system in django/contrib: http://code.djangoproject.com/browser/django/trunk/django/contrib/comments
it has a karma like system and may or may not have unique votes On Apr 1, 3:08 pm, "SimpleMan" <[EMAIL PROTECTED]> wrote: > 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/734f... > > 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 -~----------~----~----~----~------~----~------~--~---

