[Django]-Django pluralization functional.__proxy__object instead of verbose_name

4👍

✅

When you look at the proxy object, you’ll see that it is a proxy object for a string-like class.

Try using model._meta.verbose_name_plural.title() to get a string from the proxy object.

Leave a comment