Ich weiß nicht, was es ist, aber ich habe einen Titelfehler in Django. ** Einfache Geschichte ** Ich frage mich, aber zur Erinnerung.
Django tried loading these templates, in this order: Using loader django.template.loaders.filesystem.Loader: Using loader django.template.loaders.app_directories.Loader: C:\Python34\lib\site-packages\django\contrib\admin\templates\cms\book_list.html (File does not exist) C:\Python34\lib\site-packages\django\contrib\auth\templates\cms\book_list.html (File does not exist) C:\Python34\lib\site-packages\bootstrapform\templates\cms\book_list.html (File does not exist)
in settings.py
TEMPLATE_DIRS = ( os.path.join('mybook', 'templates'), )
Dann hat Loader es gefunden.
Es scheint klüger zu sein, ↓ hinzuzufügen, da es unter der Position settings.py gesucht zu werden scheint.
SETTINGS_PATH = os.path.normpath(os.path.dirname(__file__)) TEMPLATE_DIRS = ( os.path.join(SETTINGS_PATH, 'templates'), )
Etwas wie das.