I am using the basic configuration for Django Mptt Admin
from django.contrib import admin
from mptt.admin import MPTTModelAdmin
from teklifpark.categories.models import Category
admin.site.register(Category, MPTTModelAdmin)
But in the admin panel I cannot view category names. I can create but while choosing the parent category in the drop down box I can only view Category Object instead of name of the category how can I fix it.
I’m sure that you didn’t added
in your Category class