Add space before example value

This commit is contained in:
Jeremy Stretch 2024-06-26 08:53:53 -04:00
parent 122efb6fa1
commit 7ac8abb001

View File

@ -27,7 +27,7 @@ class ColorField(models.CharField):
def formfield(self, **kwargs):
kwargs['widget'] = ColorSelect
kwargs['help_text'] = mark_safe(_('RGB color in hexadecimal. Example:') + '<code>00ff00</code>')
kwargs['help_text'] = mark_safe(_('RGB color in hexadecimal. Example: ') + '<code>00ff00</code>')
return super().formfield(**kwargs)