InfoTech-Backend/infotech/professors/admin.py

7 lines
131 B
Python
Raw Permalink Normal View History

from django.contrib import admin
from .models import Professor
# Register your models here.
admin.site.register(Professor)