﻿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
2931	"""if request.POST"" should read ""if request.method == 'POST'"""	davidschein@…	Jacob	"From http://www.djangoproject.com/documentation/request_response/#httprequest-objects
we have: 

It's possible that a request can come in via POST with an empty POST dictionary -- if, say, a form is requested via the POST HTTP method but does not include form data. Therefore, you shouldn't use {{{if request.POST}}} to check for use of the POST method; instead, use {{{if request.method == ""POST""}}} (see above).

Then in http://www.djangoproject.com/documentation/forms/
we violate that advice with:
{{{
def create_place(request):
    manipulator = Place.AddManipulator()

    if request.POST:
    ...
}}}"	defect	closed	Documentation		minor	fixed		gary.wilson@…	Unreviewed	0	0	0	0	0	0
