How to prevent Django from auto-capitalizing of the verbose_name in models? E.g:
class TestModel(models.Model):
enb_id = models.IntegerField(null=True, verbose_name="eNB ID", blank=True)
I want to handle the capitalization myself and display "eNB ID" instead of "ENB ID" anywhere on the site.

