Skip to content

Instantly share code, notes, and snippets.

@Aurora0000
Created May 19, 2015 17:59
Show Gist options
  • Save Aurora0000/ada2cbd848f1af2e60c0 to your computer and use it in GitHub Desktop.
Save Aurora0000/ada2cbd848f1af2e60c0 to your computer and use it in GitHub Desktop.
class Choice(models.Model):
...
class Vote(models.Model):
author = models.ForeignKey('auth.User')
vote_choice = models.ForeignKey(Choice)
# Example
c = Choice(...)
c.save()
v = Vote(author=request.user, vote_choice=c)
v.save()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment