Re: Dynamically changing q object

2009-01-26 Thread Stefan Tunsch
This works excellent. Had now idea this was possible... Regards, Stefan Tim Chase escribió: I have a qset object like this: qset = ( Q(dst__contains=company.phone) | Q(dst__contains=company.cellphone) | Q(dst__contains=company.fax) |

Re: Dynamically changing q object

2009-01-26 Thread Tim Chase
> I have a qset object like this: > > qset = ( > Q(dst__contains=company.phone) | > Q(dst__contains=company.cellphone) | > Q(dst__contains=company.fax) | > Q(src__contains=company.phone) | > Q(src__contains=company.ce

Re: Dynamically changing q object

2009-01-26 Thread Sebastian Bauer
W dniu 26.01.2009 13:08, Stefan Tunsch pisze: > Hi! > > I have a qset object like this: > > qset = ( > Q(dst__contains=company.phone) | > Q(dst__contains=company.cellphone) | > Q(dst__contains=company.fax) | > Q(src__contains=comp

Re: Dynamically changing q object

2009-01-26 Thread Sebastian Bauer
W dniu 26.01.2009 13:08, Stefan Tunsch pisze: > Hi! > > I have a qset object like this: > > qset = ( > Q(dst__contains=company.phone) | > Q(dst__contains=company.cellphone) | > Q(dst__contains=company.fax) | > Q(src__contains=comp

Dynamically changing q object

2009-01-26 Thread Stefan Tunsch
Hi! I have a qset object like this: qset = ( Q(dst__contains=company.phone) | Q(dst__contains=company.cellphone) | Q(dst__contains=company.fax) | Q(src__contains=company.phone) | Q(src__contains=company.cellphone) |