automate weekly newsletter
This commit is contained in:
parent
629491eeed
commit
3345b5b887
4 changed files with 71 additions and 2 deletions
|
|
@ -187,6 +187,7 @@ class Week(models.Model):
|
|||
modified = models.DateTimeField(auto_now=True)
|
||||
monday = models.DateField(unique=True)
|
||||
title = models.CharField(max_length=2048)
|
||||
published = models.DateTimeField(null=True, default=None, blank=True, editable=False)
|
||||
|
||||
def __str__(self):
|
||||
return "%s (%s)" % (self.title, self.monday)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue