Not sure if it helps in your case, but try to start django in UTF-8 locale.
For example,

LANG=en_US.UTF-8 ./manage.py runserver

On Mon, Apr 25, 2011 at 6:23 PM, Ariel <isaacr...@gmail.com> wrote:

> I have the following problem, I have made a template filter that process a
> string, but when the string that is passed to the filter has a non-ascii
> character then I received that string in the filter codified, how can I
> decode the string ???
>
> For instance: in the template html I have the following code:
>
> {{object.name|tag_process}}
>
> But the name = "español" , the character ñ'' it is pass to the tag_process
> filter as C3%B1, then the string I received in the tag_process function is
> espaC3%B1ol instead of 'español', How can I solved that ???
>
>

-- 
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.

Reply via email to