StudE-Backend/stude/courses/admin.py

5 lines
90 B
Python

from django.contrib import admin
from .models import Course
admin.site.register(Course)