7

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.

Anthon
  • 69,918
  • 32
  • 186
  • 246
Sarvesh Singh
  • 81
  • 1
  • 3

1 Answers1

6

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

Community
  • 1
  • 1
kmmbvnr
  • 5,863
  • 4
  • 35
  • 44
  • 1
    Also, be careful to lookup the documentation for overriding the admin page for the correct version of Django. This answer on the same page could be helpful: https://stackoverflow.com/a/6586068/1526703 – Anupam Sep 28 '18 at 18:08