iommirocks / iommi

Your first pick for a django power cord
http://iommi.rocks
BSD 3-Clause "New" or "Revised" License
688 stars 47 forks source link

missing lazy_capitalize #460

Closed berycz closed 11 months ago

berycz commented 11 months ago

when using auto, verbose names as gettext_lazy don't work properly thnx to capitalize, which turns it into string the first time

also there is table.py L1820

            if self.title is MISSING:
                self.title = f'{model._meta.verbose_name_plural.title()}'

which should use capitalize I believe