Skip to content

Commit

Permalink
events seeds is option for #11
Browse files Browse the repository at this point in the history
  • Loading branch information
loufranco committed Sep 26, 2013
1 parent 12ed808 commit 9434e46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seedlibrary/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Event(models.Model):
name = models.CharField(max_length=150, blank=True)
date = models.DateField()
show_on_seed_edit = models.BooleanField(default=True)
seed = models.ManyToManyField(Seed)
seed = models.ManyToManyField(Seed, blank=True, null=True)

def __unicode__(self):
return self.name
Expand Down

0 comments on commit 9434e46

Please sign in to comment.