mirror of
https://github.com/Rushilwiz/ask-a-philosopher.git
synced 2025-04-17 18:50:17 -04:00
5 lines
121 B
Python
5 lines
121 B
Python
from django.contrib import admin
|
|
from .models import Question
|
|
|
|
# Register your models here.
|
|
admin.site.register(Question) |