﻿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
15614	Documentation typo	anonymous	nobody	"On this page: http://docs.djangoproject.com/en/1.2/ref/generic-views/

When I try the example for the direct_to_template:

{{{
(r'^foo/$',             'direct_to_template', {'template': 'foo_index.html'}),
}}}

I got a ''str object is not callable'' error.

If I remove the quotes around ''direct_to_template'' it does work.

{{{
(r'^foo/$',             direct_to_template, {'template': 'foo_index.html'}),
}}}"		closed	Uncategorized	1.2		fixed			Accepted	0	0	0	0	0	0
