You can use verbose_name
in the Meta
model
its well documented , for example:
class MyModel(Model): ..... class Meta: db_table = u"mytabel" verbose_name = "My Custom Name"
This should show your model on the admin index page using the verbose_name
set
source share