1👍
✅
The first_name
and last_name
fields are missing from the table on the changelist field, because you have not specified a ModelAdmin
class when you registered your model. To use the default UserAdmin
class, you would do:
from django.contrib.auth.admin import UserAdmin
admin.site.register(User, UserAdmin)
Source:stackexchange.com