Re: Why and when I should override the default AdminSite

2019-10-12 Thread Derek
Not sure what you mean by "overwrite" - there are lots of ways to extend or customise Django admin, not the least of which is retheming it e.g. Django Suite or Grappelli. On Wednesday, 9 October 2019 10:11:27 UTC+2, Jérôme Le Carrou wrote: > > I am newbie in DJango > I've started to read Djang

Re: Why and when I should override the default AdminSite

2019-10-12 Thread Derek
Hi I have also been working with Django for many, many years. All of our apps have been based around the many features/options already built-in to the admin and it works perfectly "as is". There is really a lot you can do with it if your users are accustomed to working with more traditional

Re: Why and when I should override the default AdminSite

2019-10-09 Thread Jani Tiainen
Hi. I've been working with Django about 10 years and yet I haven't need for overriding admin. Admin is great tool for CRUD while developing but I wouldn't push it too far. Specially trying to put any business logic in admin doesn't go well in the long run. And it's really easy to build proper ma

Re: Why and when I should override the default AdminSite

2019-10-09 Thread Mike Dewhirst
That's easy. When the Admin site doesn't do exactly what you want. So press on and use it. You'll know precisely when you need to tweak something and that's when to dig out the docs again :-) Connected by Motorola Jérôme Le Carrou wrote: >I am newbie in DJango > >I've started to read Django