remove task description max length

This commit is contained in:
Timur
2025-03-02 15:23:37 +03:00
parent 27fb33a885
commit b67d03798a
2 changed files with 20 additions and 1 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ class CompetitionTask(BaseModel):
)
competition = models.ForeignKey(Competition, on_delete=models.CASCADE)
title = models.CharField(verbose_name="заголовок", max_length=50)
description = HTMLField(verbose_name="описание", max_length=300)
description = HTMLField(verbose_name="описание")
max_attempts = models.PositiveSmallIntegerField(null=True, blank=True)
type = models.CharField(
choices=CompetitionTaskType, max_length=8, verbose_name="тип проверки"