mirror of
https://github.com/spbleadersofdigtal/backend.git
synced 2024-11-25 20:43: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 PitchDeck, Question
|
|
|
|
admin.site.register(PitchDeck)
|
|
admin.site.register(Question)
|