All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 2m29s
12 lines
243 B
Python
12 lines
243 B
Python
from django.contrib import admin
|
|
from quiz.models import Option
|
|
|
|
|
|
class OptionInline(admin.TabularInline):
|
|
"""Inline admin for question options"""
|
|
model = Option
|
|
extra = 0
|
|
fields = ['letter', 'text']
|
|
ordering = ['letter']
|
|
|