I have a model which has a date time field:
date = models.DateField(_("Date"), default=datetime.now())
When I check the app in the built in django admin, the DateField
also has the time appended to it, so that if you try to save it an error is returned. How do I make the default just the date? (datetime.today()
isn't working either)