Added MEPIR and UPRT mix profile types

This commit is contained in:
2025-11-28 11:14:07 +01:00
parent 7a392df8ad
commit 65444e786b
3 changed files with 23 additions and 2 deletions

View File

@@ -7,13 +7,15 @@ from ..models.aircrafts import Aircraft
class MissionType(models.TextChoices):
OTHER = "OTHER", _("OTHER")
CHK = "CHK", _("CHK_6M")
PPL = "PPL", _("PPL")
IR = "IR", _("IR")
MEP = "MEP", _("MEP")
MEP_IR = "MEP_IR", _("MEP_IR")
CPL = "CPL", _("CPL")
UPRT = "UPRT", _("UPRT")
FI = "FI", _("FI")
PC = "PC", _("PC")
CHK = "CHK", _("CHK_6M")
class MissionProfile(models.Model):
id = models.AutoField(