this allows admin to edit a work without featuring it

pull/1/head
eric 2014-11-06 14:23:34 -05:00
parent a4fed4140d
commit 4b250ec9d8
1 changed files with 1 additions and 1 deletions

View File

@ -1061,7 +1061,7 @@ class Work(models.Model):
description = models.TextField(default='', null=True, blank=True)
selected_edition = models.ForeignKey("Edition", related_name = 'selected_works', null = True)
earliest_publication = models.CharField(max_length=50, null=True)
featured = models.DateTimeField(null=True, db_index=True,)
featured = models.DateTimeField(null=True, blank=True, db_index=True,)
class Meta: