﻿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
6253	reverse() in tutorial part 4 should use the function itself rather than the string representation	alberto@…	nobody	"In the vote() function example, at the tutorial part 4 (http://www.djangoproject.com/documentation/tutorial04/), it's better to use

{{{
#!python
def vote(request, poll_id):
  ...
  return HttpResponseRedirect(reverse(results, args=(p.id,)))
}}}

rather then

{{{
#!python
def vote(request, poll_id):
  ...
  return HttpResponseRedirect(reverse('mysite.polls.views.results', args=(p.id,)))
}}}

to decouple the ''polls'' app from the ''mysite'' project."		closed	Documentation	dev		wontfix			Design decision needed	0	0	0	0	0	0
