just started an official Django tutorial and already ran into a problem, can't change page name in admin panel. I'm trying to replace a default Django administration
with something custom in the base_site.html
as suggested in the tutorial (a file which I copied from the django source directory into my app, tried to move it in/out polls directory etc.),
I have added in settings TEMPLATE_DIRS = [os.path.join(BASE_DIR, 'templates')]
, and in installed apps
also 'polls',
but nothing changes.
Any suggestions what I can do in order to make it work?
Thanks