[Answer]-Is ContenType name field always a 1:1 match with Model._meta.verbose_name?

1👍

get_for_model can take an instance or a class, so you can also do the following:

ContentType.objects.get_for_model(Blog)
👤JamesO

Leave a comment