mirror of
https://github.com/spbleadersofdigtal/backend.git
synced 2024-11-25 04:23:43 +03:00
7 lines
162 B
Python
7 lines
162 B
Python
|
from django.contrib import admin
|
||
|
|
||
|
from pitch_deck_generator.decks.models import Question, PitchDeck
|
||
|
|
||
|
admin.site.register(PitchDeck)
|
||
|
admin.site.register(Question)
|