I have a model defined as such in my models.py:
class xx(models.Model):
...
dob = models.DateField(verbose_name="Date of birth", blank=True)
...
It is not showing up in my admin interface using the django datetime picker. It was showing up initially as desired, but then I overrode the change_form.html for writing some js, and that's screwed it up I guess. Commenting out the js also doesn't help so I'm not able to narrow down the issue. Any leads?