回答編集履歴
1
修正
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
多分index.htmlは読み込まれていますが、その中で読み込もうとしているbase.htmlが読み込まれていません。 {% extends ... %} でbaseのhtmlを読み込むとき、...は mysite/hello/templates/... の位置から読み込まれます。
|
1
|
+
多分index.htmlは読み込まれていますが、その中で読み込もうとしているbase.htmlが読み込まれていません。 {% extends ... %} でindex.htmlの位置からbaseのhtmlを読み込むとき、...は mysite/hello/templates/... の位置から読み込まれます。
|
2
2
|
|
3
3
|
普通、baseのhtmlはアプリごとにある(読み込むcssやjsを変えるから)ので、
|
4
4
|
|
@@ -12,6 +12,8 @@
|
|
12
12
|
|
13
13
|
ここにbaseを入れて、
|
14
14
|
|
15
|
+
index.htmlを
|
16
|
+
|
15
17
|
```HTML
|
16
18
|
|
17
19
|
<!-- index.html -->
|