8 lines
315 B
Python
8 lines
315 B
Python
from django.contrib import admin
|
|
from .models import Student
|
|
|
|
@admin.register(Student)
|
|
class StudentAdmin(admin.ModelAdmin):
|
|
list_display = ('profile', 'progress', 'created_at', 'updated_at')
|
|
list_filter = ('created_at', 'updated_at')
|
|
search_fields = ('profile__user__username', 'profile__user__email') |