Re: collapse fields in admin [magic-removal]

2006-04-15 Thread patrickk
that´s it. thanks a lot. patrick Am 15.04.2006 um 20:32 schrieb Ian Clelland: > > On 4/15/06, patrickk <[EMAIL PROTECTED]> wrote: >> i´m getting an attribute error: >> tuple object has no attribute get >> >> any help? > > It looks like your fields attribute has an extra comma at the end of > i

Re: collapse fields in admin [magic-removal]

2006-04-15 Thread Ian Clelland
On 4/15/06, patrickk <[EMAIL PROTECTED]> wrote: > i´m getting an attribute error: > tuple object has no attribute get > > any help? It looks like your fields attribute has an extra comma at the end of it, which is making Python wrap the whole structure in another tuple. Remove that and it should

collapse fields in admin [magic-removal]

2006-04-15 Thread patrickk
this doesn´t work: class Admin: ordering = ['-id'] list_display = ('id', 'title', 'category', 'status', 'user', 'date',) list_filter = ['createdate','updatedate','status','category'] fields = ( (None, { 'fields': ('title', '