﻿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
8487	short_description doesn't work with international characters	helgiborg	Charlie La Mothe	"The following short_description will not show up in the admin interface.


{{{
class Comment(models.Model):
    text = models.TextField(core=True)
    time = models.DateTimeField(auto_now=True)

    def commentTime(obj):
        return obj.time
    commentTime.short_description = ""Tími""
}}}

However, if I change it to the following, it will work correctly:

{{{
    commentTime.short_description = ""Timi""
}}}
"		closed	contrib.admin	dev		worksforme	aug22sprint		Unreviewed	0	0	0	0	0	0
