Re: yet another unicode question...

2009-03-18 Thread Adi Sieker
Hi, On 19.03.2009, at 11:02, Juan Hernandez wrote: > Hi there, > > This has been killing me for hours and I don't know what else to do. > Is about the famous charset in django. > > I have this model: > > class Post(models.Model): > user = models.ForeignKey(User) > category = models.Fore

Re: yet another unicode question...

2009-03-18 Thread Briel
Hi. I'm not sure what exactly you are doing and how/where you are displaying this stuff. But it sounds like you are escaping the html, django does this by default to protect sites from XSS attacks ect. You can either stop the auto escaping in the template or use the |safe tag. You can read about d

Re: yet another unicode question...

2009-03-18 Thread Alex Gaynor
On Wed, Mar 18, 2009 at 11:32 AM, Juan Hernandez wrote: > Hi there, > > This has been killing me for hours and I don't know what else to do. Is > about the famous charset in django. > > I have this model: > > class Post(models.Model): > user = models.ForeignKey(User) > category = models.Fo