pallets-eco / wtforms-appengine

WTForms integration for Google App Engine
https://wtforms-appengine.readthedocs.io
Other
42 stars 16 forks source link

Use verbose_name in field labels #2

Closed adsahay closed 8 years ago

adsahay commented 10 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()
mikelambert commented 8 years ago

Thanks for the suggestion, I'm going to merge this in now.