[Answer]-Getting the different model views to work for the same model in Django-admin

1👍

You may want to change :

def ChildTeacherAdmin(StudentAdmin):

to

class ChildTeacherAdmin(StudentAdmin):

👤Rohan

Leave a comment