Re: Custom Django Admin Pages

2018-08-22 Thread Derek
t; > > Original Message ---- > Subject: Custom Django Admin Pages > From: 'Kyle Mulka' via Django users > To: Django users > CC: > > > Hi there, > > It seems like Django Admin is designed to work with Django models. But, > I'm wondering what the best way

Re: Custom Django Admin Pages

2018-08-21 Thread Jani Tiainen
Hi. Admin is designed to be datacentric view to your models, namely providing simple CRUD ops to your data. If you want something else which involves your business requirements and logic, generic class based views do help there. But in any case, you should build your own management console for

Re: Custom Django Admin Pages

2018-08-20 Thread Vineet Kothari
It will be a bad practise you can disable dango admin and create a new app admin but it will require effortsSent from my Huawei Mobile Original Message Subject: Custom Django Admin PagesFrom: 'Kyle Mulka' via Django users To: Django users CC: Hi there,It seems like Django Admin is

Custom Django Admin Pages

2018-08-20 Thread 'Kyle Mulka' via Django users
Hi there, It seems like Django Admin is designed to work with Django models. But, I'm wondering what the best way is to create custom admin pages that don't revolve around Django models. Like, maybe there's a third party API that I want admins to be able to call from the Django admin. What's