initial commit

This commit is contained in:
Lucas
2024-06-09 14:55:25 -07:00
commit 3fd16b4833
39 changed files with 276 additions and 0 deletions

5
student/admin.py Normal file
View File

@@ -0,0 +1,5 @@
from django.contrib import admin
from .models import Student
# Register your models here.
admin.site.register(Student)