default value for datefield django code example
Example 1: blank=true
blank determines whether the field will be required in forms. This includes the admin and your custom forms. If blank=True then the field will not be required, whereas if it's False the field cannot be blank.
Example 2: django datetimefield default
date = models.DateTimeField(auto_now_add=True, blank=True)