Re: list_filter not working properly?

2006-05-05 Thread arthur debert
yes, same thing here. strangely enough, I have a model with a foreign key acting as a list_fillter and it's fine. another model (same app) list filters wont't work (foreign key or not) . this was working a little while ago. still looking into it...

Re: list_filter not working properly?

2006-05-05 Thread Petar Marić
Hi Malcolm, If you wish I could give you Trac access to my code - just e-mail me. Regards, PS: I too am using the latest svn code (rev. 2847 at this moment) -- Petar Marić *e-mail: [EMAIL PROTECTED] *mobile: +381 (64) 6122467 *icq: 224720322 *skype: petar_maric *web: http://www.petarmaric.com/

Re: list_filter not working properly?

2006-05-05 Thread Malcolm Tredinnick
Hi Petar, On Fri, 2006-05-05 at 11:32 +0200, Petar Marić wrote: > Anyone? Sorry for the delay in responding; it can be frustrating when you're beating your head against a problem like this. Using the latest svn code (post magic-removal merge) and something based on your example (DjangoUser is

Re: list_filter not working properly?

2006-05-05 Thread Petar Marić
Anyone? -- Petar Marić *e-mail: [EMAIL PROTECTED] *mobile: +381 (64) 6122467 *icq: 224720322 *skype: petar_maric *web: http://www.petarmaric.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users"

list_filter not working properly?

2006-05-04 Thread Petar Marić
Hi Djangonauts, I've run into some weird problems with list_filter: class User(models.Model): core_user = models.OneToOneField( DjangoUser, #django.auth.user primary_key='True' ) birthday = models.DateField() city = models.ForeignKey("City") def