Loading docs/intro/tutorial02.txt +4 −1 Original line number Diff line number Diff line Loading @@ -113,8 +113,8 @@ Just one thing to do: We need to tell the admin that ``Poll`` objects have an admin interface. To do this, create a file called ``admin.py`` in your ``polls`` directory, and edit it to look like this:: from polls.models import Poll from django.contrib import admin from polls.models import Poll admin.site.register(Poll) Loading Loading @@ -283,6 +283,9 @@ It'd be better if you could add a bunch of Choices directly when you create the 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 class ChoiceInline(admin.StackedInline): model = Choice extra = 3 Loading Loading
docs/intro/tutorial02.txt +4 −1 Original line number Diff line number Diff line Loading @@ -113,8 +113,8 @@ Just one thing to do: We need to tell the admin that ``Poll`` objects have an admin interface. To do this, create a file called ``admin.py`` in your ``polls`` directory, and edit it to look like this:: from polls.models import Poll from django.contrib import admin from polls.models import Poll admin.site.register(Poll) Loading Loading @@ -283,6 +283,9 @@ It'd be better if you could add a bunch of Choices directly when you create the 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 class ChoiceInline(admin.StackedInline): model = Choice extra = 3 Loading