投票アプリのチュートリアルパート3に従っていますが、テンプレートが見つかりません
これは正確なエラーです
polls/index.html
Request Method: GET
Request URL: http://localhost:8000/polls/
Django Version: 1.4.3
Exception Type: TemplateDoesNotExist
Exception Value:
polls/index.html
Exception Location: c:\Python27\lib\site-packages\django\template\loader.py in find_template, line 138
Python Executable: c:\Python27\python.exe
Python Version: 2.7.2
したがって、settings.pyにディレクトリを配置しました。「C:/Scripts/mysite/template」と作成された/polls/index.html
TEMPLATE_DIRS = (
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
"C:/Scripts/template"
"C:/Scripts/mysite/template"
)
どういうわけかそれを見つけることができません。何か案は?これはチュートリアルからの正確な指示です。
ファイルシステムのどこかに、Djangoがアクセスできるコンテンツのディレクトリを作成します。(Djangoは、サーバーが実行するユーザーとして実行されます。)