Closed adsahay closed 8 years ago
In ndb.py:
'label': prop._code_name.replace('_', ' ').title(),
should be modified to use verbose_name from the ndb model property where available.
'label': prop._verbose_name or prop._code_name.replace('_', ' ').title()
Thanks for the suggestion, I'm going to merge this in now.
In ndb.py:
should be modified to use verbose_name from the ndb model property where available.