I changed the admin site index template in Django like this:
<code>admin.site.index_template = "admin/list-aprovals.html"
</code>
<code>admin.site.index_template = "admin/list-aprovals.html"
</code>
admin.site.index_template = "admin/list-aprovals.html"
but how can i send my model datas this page or can i add a custom view for this url:
<code>path('admin/', admin.site.urls),
</code>
<code>path('admin/', admin.site.urls),
</code>
path('admin/', admin.site.urls),
So, I want to work with the existing django admin, but I only want to change the template and see my models in this special template, but with the original admin app. Is this possible in Django? How do I solve this problem?
I tried custom app but i want to use original contrib admin.