﻿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
28271	Debug view's AJAX response doesn't have the proper charset	Sergey Tereschenko	Tim Graham <timograham@…>	"In `django/views/debug.py`
`technical_500_response` uses content-type `text-plain` for ajax requests and `text-html` for normal requests.

TECHNICAL_500_TEMPLATE includes meta tag 
{{{
<meta http-equiv=""content-type"" content=""text/html; charset=utf-8"">
}}}
And so it supports unicode.

Traceback for AJAX request must use
{{{
HttpResponse(text, status=status_code, content_type='text/plain; charset=utf-8')
}}} 
to support unicode. But now it's just 'text-plain'"	Bug	closed	Error reporting	dev	Normal	fixed			Accepted	1	0	1	0	1	0
