add tasks app

This commit is contained in:
xoliqberdiyev
2026-04-29 18:40:51 +05:00
parent abed9e59b4
commit b39c080de3
28 changed files with 361 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
from django.db import models
class PriorityChoice(models.TextChoices):
LOW = "low", "Low"
MEDIUM = "medium", "Medium"
HIGH = "high", "High"