diff options
| author | Collin Anderson <collin@onetencommunications.com> | 2014-08-01 21:32:53 -0400 |
|---|---|---|
| committer | Erik Romijn <eromijn@solidlinks.nl> | 2014-08-02 10:17:45 +0200 |
| commit | e075d2e66baae98c5b5c06bff384665ab50e0223 (patch) | |
| tree | bb6b7d2f1a5e87726313a0d6d357713d920c7ccd /docs/intro/tutorial02.txt | |
| parent | 8f9d6e83a005901bc2a368a28017ee52a8c081f8 (diff) | |
Fixed #23148 -- Minor tweaks in tutorial code samples
Diffstat (limited to 'docs/intro/tutorial02.txt')
| -rw-r--r-- | docs/intro/tutorial02.txt | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt index 4c5e869f8d..653090b6d6 100644 --- a/docs/intro/tutorial02.txt +++ b/docs/intro/tutorial02.txt @@ -275,8 +275,8 @@ with the admin just as we did with ``Question``. That's easy: :filename: polls/admin.py from django.contrib import admin - from polls.models import Choice - + from polls.models import Choice, Question + # ... admin.site.register(Choice) Now "Choices" is an available option in the Django admin. The "Add choice" form @@ -319,8 +319,7 @@ registration code to read: class QuestionAdmin(admin.ModelAdmin): fieldsets = [ (None, {'fields': ['question_text']}), - ('Date information', {'fields': ['pub_date'], - 'classes': ['collapse']}), + ('Date information', {'fields': ['pub_date'], 'classes': ['collapse']}), ] inlines = [ChoiceInline] |
