15 lines
411 B
Python
15 lines
411 B
Python
from django.contrib import admin
|
|
|
|
from ..models import Teacher
|
|
|
|
|
|
@admin.register(Teacher)
|
|
class TeacherAdmin(admin.ModelAdmin):
|
|
fieldsets = [
|
|
('Personal Information', {'fields': [
|
|
'first_name', 'last_name']}),
|
|
('House Wars Information', {
|
|
'fields': ['grade', 'house', 'activity']}),
|
|
]
|
|
|
|
list_display = ('first_name', 'last_name', 'house', 'grade', 'activity')
|