In the django settings.py its asking for TEMPLATE_DIR.
Rather than hard coding the path there I want to have templates folder inside the each app, e.g.
coresite/templates
blog/templates
gallery/templates
How can make that generic? Or do I have to add the templates for each app I have in my base site?
You can add
django.template.loaders.app_directories.LoadertoTEMPLATE_LOADERSin thesettings.pyfile, which will try to load templates from each installed app’stemplatessub directory.e.g.
More info: Template loader types