I am new to django, I am following the user guide to modify admin template, however, got the following error when I put ‘DIRS’: [BASE_DIR / ‘templates’], in my settings.py:
my tree is like this:
├── db.sqlite3
├── manage.py
├── mysite
│ ├── asgi.py
│ ├── init.py
│ ├── pycache
│ │ ├── init.cpython-37.pyc
│ │ ├── settings.cpython-37.pyc
│ │ ├── urls.cpython-37.pyc
│ │ └── wsgi.cpython-37.pyc
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
├── polls
│ ├── admin.py
│ ├── apps.py
│ ├── init.py
│ ├── migrations
│ │ ├── 0001_initial.py
│ │ ├── init.py
│ │ └── pycache
│ │ ├── 0001_initial.cpython-37.pyc
│ │ └── init.cpython-37.pyc
│ ├── models.py
│ ├── pycache
│ │ ├── admin.cpython-37.pyc
│ │ ├── apps.cpython-37.pyc
│ │ ├── init.cpython-37.pyc
│ │ ├── models.cpython-37.pyc
│ │ ├── tests.cpython-37.pyc
│ │ ├── urls.cpython-37.pyc
│ │ └── views.cpython-37.pyc
│ ├── static
│ │ └── polls
│ │ ├── images
│ │ │ └── bgimage.jpg
│ │ └── style.css
│ ├── templates
│ │ └── polls
│ │ ├── detail.html
│ │ ├── index.html
│ │ └── results.html
│ ├── tests.py
│ ├── urls.py
│ └── views.py
└── templates
└── admin
└── base_site.html
I also changed base_site.html to: