I would like to create a custom index.html derived from the admin/index.html individual for each app in my django project.
For instance my folder structure is like:
- app1
- templates
- index.html (different from the global template admin/index.html)
- templates
- app2
- templates
- admin
- base.html
- index.html (global template index.html)
- admin
How can I achieve custom admin index.html files for my apps, that are recognized by django? For the moment only the index.html in the global template/admin folder is considered for rendering the index pages in my backend.
I'm using django 1.6