Reputation: 81
Is there a way to add some external links and buttons on the django admin page? I am trying to add link of my web page on the django-admin login page and unable to do so.
Upvotes: 7
Views: 8656
Reputation: 6139
In order to override admin login page, you need to provide custom 'templates/admin/login.html' file
Check this answer to find the proper template file location and settings - https://stackoverflow.com/a/29997719/46548
Upvotes: 6