[Fixed]-Can i get an additional button called view in admins panel?

1👍

You can change it…

create template folder and inside create admin folder after that copy index.html file from django/contrib/admin/templates/admin

your-project
|
|__app1
|
|__app2
|
|__template
   |
   |__admin
      |
      |__index.html

Please give the exact path of your virtualenv…

cp ../venv/lib/python2.7/site-packages/django/contrib/admin/templates/admin/index.html template/admin/

And now you can change anything you want…

Note: And one more thing do not forgot to update settings.TEMPLATES like this

'DIRS': [
    os.path.join(BASE_DIR, 'templates'),
],

Leave a comment