diff --git a/apps/school/admin.py b/apps/school/admin.py index da0704b9..8f4c6cd9 100644 --- a/apps/school/admin.py +++ b/apps/school/admin.py @@ -5,7 +5,15 @@ from .models import SchoolSchedule, LiveLesson, SchoolScheduleImage @admin.register(LiveLesson) class LiveLessonAdmin(admin.ModelAdmin): - pass + list_display = ( + 'id', + 'title', + 'stream', + 'cover', + 'date', + 'created_at', + 'update_at', + ) @admin.register(SchoolSchedule)