Re: Parent initialization don't working

2016-08-22 Thread RompePC
Sorry for the late response, have been busy. In communication, their activity is almost null (just see the response to issues). Every problem I had has to be fixed by me with no help. About english docs, they were supossed to be finished 2 years ago. And if you think you can check code to know wh

Re: Parent initialization don't working

2016-08-12 Thread Constantine Covtushenko
Sorry, I did not mention your point about xadmin. Sorry again. I've checked its github page. It seems like they do not have documentation in English. So may be your problem should be addressed to them? Did you try that? Else as for me we should go to xadmin code and check there. On Fri, Aug 12,

Re: Parent initialization don't working

2016-08-12 Thread RompePC
An intereseting point is that, even after the *super*, *list_filter* remains still setted (which is what I want), but then in the web page it doesn't show anywhere (as if you just didn't setted it). Maybe there's some hidden *__init__* upside model admin that do some clean? El jueves, 11 de ago

Re: Parent initialization don't working

2016-08-11 Thread RompePC
Thanks for the response, but I tried that before and didn't helped. In xadmin you inherit from object (yeah, weird), and there you've your model panel. The matter is that some set up works in that parent class (like *form_layout*), but others not, and raising and exception to see their values s

Re: Parent initialization don't working

2016-08-11 Thread Constantine Covtushenko
Hi Rompe, As for your admin models it seems like they should extend: `admin.ModelAdmin`, see django documentation I am not sure that this is a problem you have encountered. But to move further please do like said in the documentation fir

Parent initialization don't working

2016-08-11 Thread RompePC
I'll say first that I'm using *xadmin*, although it doesn't matter for this problem. Python 2.7.3 with Django 1.9.5 The problem is in this piece of code (take it as an example): class ParentAdmin(object): def __init__(self): # Boring stuff self.list_filter = ["name"] # Calling