From 6c6de8610c6e32ae23c4b12a340ba9c5672d6872 Mon Sep 17 00:00:00 2001 From: Kirosbr Date: Thu, 31 Oct 2024 08:43:50 +0100 Subject: [PATCH] debug --- vehicles/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vehicles/models.py b/vehicles/models.py index cbbf5f9..192a81a 100644 --- a/vehicles/models.py +++ b/vehicles/models.py @@ -39,7 +39,7 @@ class Vehicles(models.Model): nType = models.CharField('Type', max_length=1, choices=VHC_CHOICES, default=1) bLucas = models.BooleanField("Lucas", default=0) nOrder = models.IntegerField("Ordre", default=0) - nTeam = models.CharField('Équipe', max_length=1, choices=TEAM_NUMBER, default=1) + #nTeam = models.CharField('Équipe', max_length=1, choices=TEAM_NUMBER, default=1) def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs)