Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. from django.contrib import admin
  2. from setup.models import MatchQuestions, Choice
  3. # Register your models here.
  4.  
  5.  
  6. class ChoiceInline(admin.StackedInline):
  7. model = Choice
  8.  
  9. class MatchAdmin(MatchQuestions):
  10. inlines = [ChoiceInline]
  11.  
  12. admin.site.register(MatchAdmin)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement