Private
Public Access
1
0

a few fixes on comments

This commit is contained in:
Sander Roosendaal
2017-02-23 18:14:43 +01:00
parent 1d9dc829ae
commit 7dcdaa516b
3 changed files with 9 additions and 5 deletions

View File

@@ -891,7 +891,7 @@ class WorkoutComment(models.Model):
comment = models.TextField(max_length=300)
created = models.DateTimeField(default=timezone.now)
read = models.BooleanField(default=False)
notification = models.BooleanField(default=False,verbose_name="Send me notifications")
notification = models.BooleanField(default=True,verbose_name="Subscribe to new comment notifications")
user = models.ForeignKey(User)
workout = models.ForeignKey(Workout)