Sarvesh Singh
Sarvesh Singh

Reputation: 81

Adding links and buttons on django admin page

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

Answers (1)

kmmbvnr
kmmbvnr

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

Related Questions