1
0
Fork 0

Adds stopped date separate from finish date on readthrough

This commit is contained in:
Mouse Reeve 2022-05-26 11:33:31 -07:00
parent 1f6fbd8d29
commit 375c5a8789
5 changed files with 29 additions and 3 deletions

View file

@ -27,6 +27,7 @@ class ReadThrough(BookWyrmModel):
)
start_date = models.DateTimeField(blank=True, null=True)
finish_date = models.DateTimeField(blank=True, null=True)
stopped_date = models.DateTimeField(blank=True, null=True)
is_active = models.BooleanField(default=True)
def save(self, *args, **kwargs):