﻿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
19379	utf-8 not supported in fieldsets	Fernando Adrián Fernández Vargas	nobody	"If you have non-ascii characters in the fieldsets that particular object will not render in the generated template in the django admin.

For example if you use the next code in an admin class the 'General' will render correctly but without it's description. The name 'Información' will not render but its fields will render correctly. Obviously both errors because the special character 'ó' is used (and is really common in Spanish).

{{{
    fieldsets = (
        ('General', {
            'fields': ('mat', 'pro', 'per',),
            'description':'cómo'
        }),
        ('Información', {
            'fields': ('f1', 'f2', 'f3',)
        }),
    )
}}}

I tried adding the utf-8 codification in every .py file in my project and in the contrib.admin but it did not work."	Bug	closed	contrib.admin	1.4	Normal	needsinfo	utf-8 fieldsets		Unreviewed	0	0	0	0	0	0
