Re: admin site and parent/child relationship

2007-08-31 Thread Ariel Mauricio Nunez Gomez
Have you looked at the admin filter option, it's not exactly waht you're asking for, but could do the job? In the admin view (change_list for call ) if you append: ?client=MyClient to the url, the data get's filtered. --~--~-~--~~~---~--~~ You received this messag

Re: admin site and parent/child relationship

2007-08-31 Thread Diego
Si, disculpame. Ej: cliente y llamadas del cliente La interface admin automatica genera interfaces para clientes y para llamadas, yo quiero que un usuario al seleccionar un cliente, pueda acceder a las llamadas hechas por el cliente (mediante un link), es decir que vea las llamadas hechas solo po

Re: admin site and parent/child relationship

2007-08-31 Thread Lic. José M. Rodriguez Bacallao
podrias ser un poco mas explicito, entiendo vagamente tu idea, podrias ponerme un ejemplo? On 8/31/07, Diego <[EMAIL PROTECTED]> wrote: > > > Hola José, necesito representar un modelo similar al Country/State, > pero quiero que a un determinado State se acceda solo a traves de la > interface del C

Re: admin site and parent/child relationship

2007-08-31 Thread Diego
Hola José, necesito representar un modelo similar al Country/State, pero quiero que a un determinado State se acceda solo a traves de la interface del Country al que pertenece. Tenes idea como puedo hacer eso utilizando la interface admin?? Muchas gracias, saludos desde Argentina On 30 ago, 16:0

Re: admin site and parent/child relationship

2007-08-31 Thread Diego
Yes, but my idea is to use admin interface without writing my own views etc, because of I have a lot this similar situations...and I´m new using Django! Thanks On 31 ago, 09:50, eXt <[EMAIL PROTECTED]> wrote: > You can write your own view and template that will implement this > functionality. T

Re: admin site and parent/child relationship

2007-08-31 Thread eXt
You can write your own view and template that will implement this functionality. Then override Admin's urls with yours for the specific view. For more information look at djangobook.com and find a relevant chapter there. -- Jakub Wiśniowski On 30 Sie, 21:05, "Lic. José M. Rodriguez Bacallao" <[E

Re: admin site and parent/child relationship

2007-08-30 Thread Lic. José M. Rodriguez Bacallao
ok, thanks On 8/30/07, Alex Koshelev <[EMAIL PROTECTED]> wrote: > > > There is no way to do so in django admin now. > > > > > -- Lic. José M. Rodriguez Bacallao Cupet - Todos somos muy ignorantes, lo que ocurre es que no todos igno

Re: admin site and parent/child relationship

2007-08-30 Thread Alex Koshelev
There is no way to do so in django admin now. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group,

admin site and parent/child relationship

2007-08-30 Thread Lic. José M. Rodriguez Bacallao
Hi people, I got a little problem with the admin page, I have models to represent Country/State situation and a Person model that reference Country and State models but I want in admin that when I change a country of a person, the list of states get updated to states of that country. How can I do