5 lines
119 B
Python
5 lines
119 B
Python
|
from django.contrib import admin
|
||
|
|
||
|
from tkupek_elearning.elearning.models import question
|
||
|
|
||
|
admin.site.register(question)
|