From a533a91e8cfd904cf04f6c90f4fa7d9152885002 Mon Sep 17 00:00:00 2001 From: Ambulance Clerc Date: Tue, 16 Apr 2024 09:53:44 +0200 Subject: [PATCH] =?UTF-8?q?Changement=20cl=C3=A9=20en=20mot=20cl=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- comm_op/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comm_op/models.py b/comm_op/models.py index c04aedd..44d812d 100644 --- a/comm_op/models.py +++ b/comm_op/models.py @@ -6,7 +6,7 @@ import uuid # Create your models here. class comm_opMessage(models.Model): uuid = models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True) - sKey = models.CharField("Clé d'identification", max_length=100) + sKey = models.CharField("Mot clé", max_length=100) sTitle = models.CharField('Titre', max_length=250) sDesc = models.TextField('Description') dtStart = models.DateField("Date de début", default=timezone.now)