Show progress on status

This commit is contained in:
Mouse Reeve
2021-03-20 18:03:20 -07:00
parent 17489f002f
commit d3a4282f11
5 changed files with 32 additions and 36 deletions

View File

@ -235,7 +235,7 @@ class Comment(Status):
progress = models.IntegerField(
validators=[MinValueValidator(0)], null=True, blank=True
)
mode = models.CharField(
progress_mode = models.CharField(
max_length=3,
choices=ProgressMode.choices,
default=ProgressMode.PAGE,