From: Matthijs Kooijman Date: Fri, 16 Jan 2009 21:27:55 +0000 (+0100) Subject: Merge branch 'production' X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fprojects%2Fxerxes.git;a=commitdiff_plain;h=31b568b8f923b0d146c6090527f0c41fa4b6c7b9;hp=a974141892f10ff9f89908d878d1246f3983fe66 Merge branch 'production' * production: Allow Influence.todo to be blank. --- diff --git a/influences/models.py b/influences/models.py index 2c62626..8f243f5 100644 --- a/influences/models.py +++ b/influences/models.py @@ -51,7 +51,7 @@ class Influence(models.Model): other_characters = models.ManyToManyField(Character, blank = True, verbose_name = _("Involved characters"), related_name='influences_involved_in') summary = models.CharField(max_length=255, verbose_name = _("Summary")) description = models.TextField(verbose_name = _("Description")) - todo = models.TextField(verbose_name = _("Todo")) + todo = models.TextField(blank=True, verbose_name = _("Todo")) status = models.CharField(max_length=1, choices=STATUS_CHOICES, default='N', verbose_name = _("Status")) longterm = models.BooleanField(default=False, verbose_name = _("Long term"))