﻿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
23769	String with unicode is not passed to template from a view	Ajin Abraham	nobody	"When a string that contains some unicode symbols is passed from a view to a template. The whole data get ignored and won't get rendered in the template.

A quick fix is to decode to 'windows-1252' and then encode to 'utf8'
example:
# x is a string that contain unicode like ""«»""
x=x.decode(""windows-1252"").encode(""utf8"")

It's better to be handled internally than a user doing it, else there should be some errors mentioning the issue rather than just ignoring the whole data."	Bug	closed	Template system	1.7	Normal	invalid	unicode, encoding		Unreviewed	1	0	0	0	0	0
