1👍
You can use:
<a href="{% url 'admin:myapp_car_changelist' %}">Cars</a>
<a href="{% url 'admin:myapp_motorbike_changelist' %}">Motorbikes</a>
<a href="{% url 'admin:myapp_truck_changelist' %}">Trucks</a>
Where myapp
is the name of the app each model comes from. There’s more detail on how to reverse admin urls in the docs.
Source:stackexchange.com