8 lines
124 B
Python
8 lines
124 B
Python
|
from django.contrib import admin
|
||
|
|
||
|
# Register your models here.
|
||
|
|
||
|
from .models import Question
|
||
|
|
||
|
admin.site.register(Question)
|