You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
339 B
11 lines
339 B
from django.contrib import admin
|
|
|
|
# Register your models here.
|
|
|
|
# 修改名称
|
|
admin.site.site_header='在线考试系统后台'
|
|
admin.site.site_title='在线考试系统'
|
|
|
|
from exam.models import Academy,Major, Course,Student,QuestionBank,TestPaper,Record
|
|
|
|
admin.site.register([Academy,Major,Course,Student,QuestionBank,TestPaper,Record]) |