I am working with Wagtail and I am creating the model of the app.
publish_date = models.DateField(
max_length=300,
blank=True,
null=True,
default="20 Feb",
verbose_name="First publish date",
help_text="This shows the first publish date"
)
I think the problem is that the field type is a DateField but the value that I am sending is '20 Feb'.
Any ideas?