[Answer]-How do I link to a model's listing in the Django admin interface?

1👍

That is the changelist.

reverse('admin:myapp_mymodel_changelist') == reverse('admin:myapp_mymodel_add')[:-4]

Leave a comment