Re: Exposing custom views in admin index page

2019-03-06 Thread Carlton Gibson
django-admin-views was functional as recently as Django 2.0 https://github.com/frankwiles/django-admin-views/issues/34 I'm guessing it would be pretty easy to pick up. (Frank stated he was very happy for someone to become steward...) (I appreciate that doesn't address the "should we have this

Re: Exposing custom views in admin index page

2019-03-06 Thread Kye Russell
I understand that overly extending the admin interface is a common anti pattern, but this still feels within reason to me. Extending the admin interface in this way has for me personally felt like a bit of a black box. On Wed, 6 Mar 2019 at 7:40 pm, mrts wrote: > Hello! > > Django ModelAdmin cla

Exposing custom views in admin index page

2019-03-06 Thread mrts
Hello! Django ModelAdmin class has a nice way to create custom admin views with get_urls(). What is missing however is a way to expose them in the admin index page. Frank Wiles created the (now abandoned) django-admin-views package [1] as a workaround and there are many questions regarding thi