Add 'In Progress' status to QuestionReview model for enhanced tracking

This commit is contained in:
Ross
2025-10-22 22:02:38 +01:00
parent 68f45c8561
commit fa68034f03
+1
View File
@@ -1323,6 +1323,7 @@ class QuestionReview(models.Model):
OUTDATED = "OD", "Outdated"
ERROR = "ER", "Error"
REJECTED = "RJ", "Rejected"
IN_PROGRESS = "IP", "In Progress"
content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE)
object_id = models.PositiveIntegerField()