﻿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
18765	tutorial01 missed step (poll save)	evanda@…	nobody	"When adding choices to the poll it is suggested that the choice can tell you its API:

{{{
>>> c = p.choice_set.create(choice_text='Just hacking again', votes=0)

# Choice objects have API access to their related Poll objects.
>>> c.poll
<Poll: What's up?>
}}}

But that does not work - you must save the poll after adding the choices before it appears.  Just add:

{{{
p.save()
}}}

In there after the choice_set.create() call."	Bug	closed	Documentation	1.4	Normal	needsinfo			Unreviewed	0	0	0	0	1	0
