Re: How to override default Django Admin Panel Model display to Customization

2019-04-16 Thread Derek
Proxy models, with an associated Manager, are one way to achieve this - assuming your criteria are fixed. On Monday, 15 April 2019 15:25:49 UTC+2, Balaji Shetty wrote: > > Hi > > When i do login using Django Admin Panel , i can easily perform CRUD > operation on Models. > > can i customize the

How to override default Django Admin Panel Model display to Customization

2019-04-15 Thread Balaji Shetty
Hi When i do login using Django Admin Panel , i can easily perform CRUD operation on Models. can i customize the display of Models Records in django Admin Panel Itself, when I select the model, I get all the records, But i want to filter the records based on some Criteria. Here is my model . Cod