#8487: short_description doesn't work with international characters
-----------------------------+----------------------------------------------
Reporter: helgiborg | Owner: nobody
Status: new | Milestone: 1.0
Component: Admin interface | Version: SVN
Keywords: | Stage: Unreviewed
Has_patch: 0 |
-----------------------------+----------------------------------------------
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"
}}}
--
Ticket URL: <http://code.djangoproject.com/ticket/8487>
Django Code <http://code.djangoproject.com/>
The web framework for perfectionists with deadlines
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---