This commit is contained in:
Ross
2021-09-09 17:28:03 +01:00
parent 025ed5ec9b
commit 2c772d5f2c
4 changed files with 29 additions and 6 deletions
+1 -1
View File
@@ -128,7 +128,7 @@ class QuestionNote(models.Model):
user_author = models.ForeignKey( settings.AUTH_USER_MODEL,
on_delete=models.CASCADE, blank=True, null=True)
note = models.TextField()
note = models.TextField(blank=True)
created_on = models.DateTimeField(auto_now_add=True)
complete = models.BooleanField(default=False)