Merge branch 'master' into master
This commit is contained in:
commit
ac38a58a38
5 changed files with 57 additions and 14 deletions
|
@ -205,6 +205,7 @@ class PartialBallotDecryption(models.Model):
|
|||
class Ballot(models.Model):
|
||||
voter = models.ForeignKey(EmailUser, on_delete=models.CASCADE, related_name="ballots")
|
||||
poll = models.ForeignKey(Poll, on_delete=models.CASCADE, related_name="ballots")
|
||||
selection = models.CharField(max_length=1)
|
||||
cast = models.BooleanField(default=False)
|
||||
|
||||
|
||||
|
|
Reference in a new issue