Fixed #18576 -- Added missing import in tutorial02
Thanks jaaruiz at yahoo.com for the report.
This commit is contained in:
parent
86eb606b88
commit
4c417cc9eb
|
@ -284,7 +284,7 @@ Remove the ``register()`` call for the ``Choice`` model. Then, edit the ``Poll``
|
|||
registration code to read::
|
||||
|
||||
from django.contrib import admin
|
||||
from polls.models import Poll
|
||||
from polls.models import Choice, Poll
|
||||
|
||||
class ChoiceInline(admin.StackedInline):
|
||||
model = Choice
|
||||
|
|
Loading…
Reference in New Issue