Django and PyAMF - RemotingError

2009-06-25 Thread Noxxan
Hi, I'm trying to place in my app an amf gateway, so I make one gateway with code: #-*- coding: utf-8 -*- from pyamf.remoting.gateway.django import DjangoGateway from my.views import some_view services = { 'some_service.hello': some_view.get_smt, } echoGateway = DjangoGateway(services) t

Select fields change their value without user interaction

2011-11-18 Thread Noxxan
Hi, I have a problem with large form in Django admin site. I have a model A with two inline models (B and C). Model B have some fields, and one of them is ForeignKey with another model (we can call it D). This field is displayed as HTML select field and have a lot of options (about 2k). I have re

Re: Select fields change their value without user interaction

2011-11-18 Thread Noxxan
Thanks for your answer, I also suspect browser (big tree, it happens randomly), but maybe there are other possibilities here. Django admin in my case is used very often, many people are using it, and I'm wondering what can I do to catch/reproduce this kind of problems, to react on them, because in

Re: NoReverseMatch error when following Django Tutorial

2014-06-22 Thread Noxxan
Hi It looks like you have in polls/views.py whitespace in reverse function ("polls: results"), try without it ('polls:results"). On Sunday, June 22, 2014 10:53:12 AM UTC+2, Jerry Wu wrote: > > Dear every one, > > I am new to Python and Django and am following the Tutorial to start my > first sit