Diclaimer: Ne pas mettre d'émoji car c'est moche

This commit is contained in:
Maurice Debray 2021-12-26 16:12:58 +01:00
parent 079e0d1c3f
commit d217a74da5

View file

@ -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