mirror of
https://github.com/spbleadersofdigtal/backend.git
synced 2025-02-16 18:00:34 +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)
|