From ac0f4b5e28eb0e6fbb09e04ce87c26be09f64937 Mon Sep 17 00:00:00 2001 From: keannu125 Date: Tue, 21 Mar 2023 22:03:01 +0800 Subject: [PATCH] Add students to admin gui --- infotech/students/admin.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/infotech/students/admin.py b/infotech/students/admin.py index ea5d68b..be72944 100644 --- a/infotech/students/admin.py +++ b/infotech/students/admin.py @@ -1,3 +1,6 @@ from django.contrib import admin +from .models import Student # Register your models here. + +admin.site.register(Student)