Add 'In Progress' status to QuestionReview model for enhanced tracking
This commit is contained in:
@@ -1323,6 +1323,7 @@ class QuestionReview(models.Model):
|
|||||||
OUTDATED = "OD", "Outdated"
|
OUTDATED = "OD", "Outdated"
|
||||||
ERROR = "ER", "Error"
|
ERROR = "ER", "Error"
|
||||||
REJECTED = "RJ", "Rejected"
|
REJECTED = "RJ", "Rejected"
|
||||||
|
IN_PROGRESS = "IP", "In Progress"
|
||||||
|
|
||||||
content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE)
|
content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE)
|
||||||
object_id = models.PositiveIntegerField()
|
object_id = models.PositiveIntegerField()
|
||||||
|
|||||||
Reference in New Issue
Block a user