Django, Tornado and wsgi

2010-11-17 Thread Masarliev
Hi all, I am using this approach to run django on tornado. https://github.com/koblas/django-on-tornado Everything is OK, but I need example how to run it with wsgi or fastcgi Is it possible? -- You received this message because you are subscribed to the Google Groups "Django users" group. To pos

Boolean field as radio button?

2009-06-19 Thread Masarliev
Hi all, sorry for my bad english. I have db model class that is shown in django admin as inline but boolean fields are checkboxes. how can i replace them with radio buttons --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Grou

Django db profiler

2009-04-03 Thread Masarliev
In zend framework there is php profiler that shows every mysql Query in firebug console, but I can't find something similar in django. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to

Re: Modifu request.user

2009-03-31 Thread Mitko Masarliev
I have application with table name clients. Clients has one to one relation with django users and in all app logic I check clients id by request.user.id, In some cases user_id is not same as clients_id. This is the problem, so I am trying to change request.user.id to be equal to clients_id and

Re: Modifu request.user

2009-03-31 Thread Masarliev
hat are you trying to accomplish? > > -Jeff > > On Mar 31, 2:35 am, Masarliev wrote: > > > I have a application but i have error in base logic and I need to > > change request.user.id. > > Is it posible to do that > > I tried request.user.id = but with

Modifu request.user

2009-03-31 Thread Masarliev
I have a application but i have error in base logic and I need to change request.user.id. Is it posible to do that I tried request.user.id = but with no result --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Dj