質問編集履歴
2
base.htmlファイルを追記しました。今追記していた際に、指摘頂いた「"topicsList_main" 」がビュー以外に書かれていない事に気づきました。そこが原因でしょうか?
test
CHANGED
File without changes
|
test
CHANGED
@@ -144,6 +144,54 @@
|
|
144
144
|
|
145
145
|
|
146
146
|
|
147
|
+
base.html
|
148
|
+
|
149
|
+
```python
|
150
|
+
|
151
|
+
<!doctype html>
|
152
|
+
|
153
|
+
<html lang="en">
|
154
|
+
|
155
|
+
<head>
|
156
|
+
|
157
|
+
<!-- Required meta tags -->
|
158
|
+
|
159
|
+
<meta charset="utf-8">
|
160
|
+
|
161
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
162
|
+
|
163
|
+
<!-- Bootstrap CSS -->
|
164
|
+
|
165
|
+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
|
166
|
+
|
167
|
+
<title>Pachi Data</title>
|
168
|
+
|
169
|
+
</head>
|
170
|
+
|
171
|
+
<body>
|
172
|
+
|
173
|
+
{% block header %}
|
174
|
+
|
175
|
+
{% endblock header %}
|
176
|
+
|
177
|
+
{% block content %}
|
178
|
+
|
179
|
+
{% endblock content %}
|
180
|
+
|
181
|
+
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
|
182
|
+
|
183
|
+
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
|
184
|
+
|
185
|
+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
|
186
|
+
|
187
|
+
</body>
|
188
|
+
|
189
|
+
</html>
|
190
|
+
|
191
|
+
```
|
192
|
+
|
193
|
+
|
194
|
+
|
147
195
|
### 試したこと
|
148
196
|
|
149
197
|
このエラー文から、
|
1
home.htmlファイルを追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -98,6 +98,52 @@
|
|
98
98
|
|
99
99
|
|
100
100
|
|
101
|
+
home.html
|
102
|
+
|
103
|
+
```python
|
104
|
+
|
105
|
+
{% extends 'base.html' %}
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
{% block header %}
|
110
|
+
|
111
|
+
<div class="jumbotron">
|
112
|
+
|
113
|
+
<div class="container">
|
114
|
+
|
115
|
+
<h1 class="display-4">News</h1>
|
116
|
+
|
117
|
+
<p class="lead">Enter the URL</p>
|
118
|
+
|
119
|
+
</div>
|
120
|
+
|
121
|
+
</div>
|
122
|
+
|
123
|
+
{% endblock header %}
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
{% block content %}
|
128
|
+
|
129
|
+
<div class="container">
|
130
|
+
|
131
|
+
<form action='' method='POST'>{% csrf_token %}
|
132
|
+
|
133
|
+
<p>URL: <input type="text" name='url'></p>
|
134
|
+
|
135
|
+
<input type="submit" value="取得する">
|
136
|
+
|
137
|
+
</form>
|
138
|
+
|
139
|
+
</div>
|
140
|
+
|
141
|
+
{% endblock content %}
|
142
|
+
|
143
|
+
```
|
144
|
+
|
145
|
+
|
146
|
+
|
101
147
|
### 試したこと
|
102
148
|
|
103
149
|
このエラー文から、
|