﻿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
29208	Mistake in the documentation, request.POST['username'] is not working, but request.POST.get('username') is working!	Marat Mkhitaryan	nobody	"https://docs.djangoproject.com/en/2.0/topics/auth/default/#django.contrib.auth.login

{{{
username = request.POST['username']
password = request.POST['password']
# MultiValueDictKeyError
username = request.POST.get('username')
password = request.POST.get('password')
# No errors
}}}
"	Bug	closed	Documentation	4.0	Normal	wontfix		Marat Mkhitaryan Mogoh Viol	Unreviewed	0	0	0	0	0	0
