Opened 12 years ago

Closed 12 years ago

#18576 closed Bug (fixed)

Missing module in import statement

Reported by: jaaruiz@… Owned by: Claude Paroz
Component: Documentation Version: 1.4
Severity: Normal Keywords: wrong example
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Claude Paroz)

A necessary module is not being imported in one of the examples. The example is located at https://docs.djangoproject.com/en/dev/intro/tutorial02/

The example code is as follows:

from django.contrib import admin
from polls.models import Poll

class ChoiceInline(admin.StackedInline):
    model = Choice
    extra = 3

class PollAdmin(admin.ModelAdmin):
    fieldsets = [
        (None,               {'fields': ['question']}),
        ('Date information', {'fields': ['pub_date'], 'classes': ['collapse']}),
    ]
    inlines = [ChoiceInline]

admin.site.register(Poll, PollAdmin)

The second line of the code should also import the `Choice' model as follows:
from polls.models import Poll, Choice

Change History (2)

comment:1 by Claude Paroz, 12 years ago

Description: modified (diff)
Owner: changed from nobody to Claude Paroz
Status: newassigned
Triage Stage: UnreviewedAccepted

comment:2 by Claude Paroz <claude@…>, 12 years ago

Resolution: fixed
Status: assignedclosed

In [4c417cc9ebd65595128b81cdddc9ea8293cbcbbe]:

Fixed #18576 -- Added missing import in tutorial02

Thanks jaaruiz at yahoo.com for the report.

Note: See TracTickets for help on using tickets.
Back to Top