From d217a74da581086b99f8bc9b3597ebb388d2f1ba Mon Sep 17 00:00:00 2001 From: Maurice Debray Date: Sun, 26 Dec 2021 16:12:58 +0100 Subject: [PATCH] =?UTF-8?q?Diclaimer:=20Ne=20pas=20mettre=20d'=C3=A9moji?= =?UTF-8?q?=20car=20c'est=20moche?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- actu/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actu/models.py b/actu/models.py index 8d16ecb..8e0a240 100644 --- a/actu/models.py +++ b/actu/models.py @@ -7,7 +7,7 @@ class Actu(models.Model): text = models.TextField(_("Info"), null=True, blank=False) text_en = models.TextField(("Info en anglais"), null=True, blank=True) order = models.IntegerField(verbose_name=_("ordre")) - rainbow = models.CharField(verbose_name = _("Actu en arc-en-ciel"), max_length=1, choices = (('y', 'Oui'), ('n', 'Non')), default='n', blank = False) + rainbow = models.CharField(verbose_name = _("Actu en arc-en-ciel (ne pas mettre d'émoji, il prennent aussi la couleur et c'est moche)"), max_length=1, choices = (('y', 'Oui'), ('n', 'Non')), default='n', blank = False) def __str__(self): return self.text