Re: Django multilingual app, urls

2007-05-25 Thread Thomas Rabaix
and django- > multilingual references. I'm interested if there's a single open > source multilingual Django website that could serve as an example of > properly implementing i18n in Django. > Eugene > > > > Thomas Rabaix --~--~-~--~~~--

Re: widgets.py And unicode

2007-05-10 Thread Thomas Rabaix
Malcolm Tredinnick wrote: > On Thu, 2007-05-10 at 01:45 +0200, Thomas Rabaix wrote: >> Hello, >> >> I have a newform object which I prepopulate some fields : >> >> form = MenuForm() >> >> tu = () >> for m in Menu.objects.all()

widgets.py And unicode

2007-05-09 Thread Thomas Rabaix
), selected_html, escape(smart_unicode(option_label.__str__() output.append(u'') return u'\n'.join(output) is it a bug or am i doing something in the wrong way ? Thomas Rabaix --~--~-~--~~~---~--~~ You received this message becaus

Custom Widget

2007-05-08 Thread Thomas Rabaix
Hello I am trying to create a new Input Widget called 'MapInput'. However the line : "from util import flatatt" from my widgets.py seems to break something. My code comes from the newforms/widgets.py file. If I comment the lines relatives to the flatatt, my widget works fine. Do you ave any i