If you are storing un-escaped HTML in your database, you must mark it
as safe when you use it in your templates.
You can use the safe filter for that:

{{ some_variable|safe }}

More information:
http://docs.djangoproject.com/en/dev/ref/templates/builtins/

- Sævar

On Jul 3, 7:31 pm, davidgp <[email protected]> wrote:
> i'm having some trouble with some chracters from my database like the
> umlaut.. they are stored in my database like this:
> &#252;
> but django changes them into
> &amp;#252;
> thus the character is not displayed correctly..
> how can i fix this?
> thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" 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-users?hl=en.

Reply via email to