add choice in django admin

This commit is contained in:
pedrolab 2020-07-13 14:11:57 +02:00
parent 8b9bf5030f
commit 0efde9e43c
1 changed files with 4 additions and 0 deletions

View File

@ -4,4 +4,8 @@ from django.contrib import admin
from .models import Question
from .models import Choice
admin.site.register(Question)
admin.site.register(Choice)