mirror of
				https://github.com/spbleadersofdigtal/backend.git
				synced 2025-11-04 01:27:33 +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)
 |