回答編集履歴

1

回答を追記

2020/04/22 05:04

投稿

hasami
hasami

スコア1277

test CHANGED
@@ -4,6 +4,26 @@
4
4
 
5
5
  app_name = 'book'
6
6
 
7
+ ```
8
+
9
+ また、「TemplateDoesNotExist at /book/list/」となる件についてですが、mysite/settings.pyのTEMPLATESリスト内の辞書に、 「'APP_DIRS': True,」はありますか?
10
+
11
+ もし、ある場合はエラーページに、Djangoがどのディレクトリにあるテンプレートを探しているかを示すログが出力されますので、その部分を確認してください。
7
12
 
8
13
 
14
+
15
+ ```python
16
+
17
+ TEMPLATES = [
18
+
19
+ {
20
+
21
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
22
+
23
+ 'DIRS': [os.path.join(BASE_DIR, 'templates')],
24
+
25
+ 'APP_DIRS': True,
26
+
27
+ # snip
28
+
9
29
  ```