django creaTE APP IN FOLDER code example
Example 1: make new app folder in django templates dir
#settings.py
TEMPLATES = [
{
...
'DIRS': [os.path.join(BASE_DIR, 'templates'),
os.path.join(BASE_DIR, 'templates', 'the_folder_you_created'),
...
]
}
]
Example 2: django make new application folder
python manage.py startapp appname