Hi, I'm getting the error below when i'm trying to edit a non ascii value on the admin site. I tried to put # -*- coding: utf-8 -*- on my model file, tried to set settings.FILE_CHARSET to 'utf-8' and I tried to put <meta http-equiv="content-type" content="text/html; charset=utf-8" /> on the admin page "change.form.html", but it didn't work.
Is there something that I forgot to do? Google didn't help me so much...In fact, I don't know how to search =/ Can you help me with this? Exception Value: Caught an exception while rendering: 'ascii' codec can't encode character u'\xed' in position 9: ordinal not in range(128) Original Traceback (most recent call last): File "/Library/Python/2.5/site-packages/django/template/debug.py", line 71, in render_node result = node.render(context) File "/Library/Python/2.5/site-packages/django/template/debug.py", line 87, in render output = force_unicode(self.filter_expression.resolve(context)) File "/Library/Python/2.5/site-packages/django/template/__init__.py", line 559, in resolve new_obj = func(obj, *arg_vals) File "/Library/Python/2.5/site-packages/django/template/defaultfilters.py", line 38, in _dec args[0] = force_unicode(args[0]) File "/Library/Python/2.5/site-packages/django/utils/encoding.py", line 52, in force_unicode s = unicode(str(s), encoding, errors) UnicodeEncodeError: 'ascii' codec can't encode character u'\xed' in position 9: ordinal not in range(128) Thanks, Rodrigo Gomes --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---