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)