where should I put the general template files in the django project?
create a templates directory under the root directory of the project to store general templates such as base.html, and then add this directory to the TEMPLATE DIRS of settings.py?
or do you want to create a special common app, for general templates to store general templates such as base.html under the templates of the app?
or are there other more reasonable ways to organize?
Please give us your advice.