﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
18576	Missing module in import statement	jaaruiz@…	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"	Bug	assigned	Documentation	1.4	Normal		wrong example		Accepted	1	0	0	0	0	0
