diff options
Diffstat (limited to 'app/daily/models.py')
-rw-r--r-- | app/daily/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/daily/models.py b/app/daily/models.py index 8fcce7f..2270fd2 100644 --- a/app/daily/models.py +++ b/app/daily/models.py @@ -72,7 +72,7 @@ class Daily(models.Model): title = models.CharField(max_length=200, blank=True, null=True) body_html = models.TextField(blank=True, null=True) body_markdown = models.TextField(blank=True, null=True) - date = models.DateField('Date published') + date = models.DateField() class Meta: ordering = ('date',) |