I\'m using Django 1.0.2. I\'ve written a ModelForm backed by a Model. This model has a ForeignKey where blank=False. When Django generates HTML for this form it creates a
For a ForeignKey field, setting the default value to '' on the model will remove the blank option.
ForeignKey
default
''
verb = models.ForeignKey(Verb, on_delete=models.CASCADE, default='')
For other fields like CharField you could set the default to None, but this does not work for ForeignKey fields in Django 1.11.
CharField
None