質問編集履歴

6

不要な箇所を削除

2020/05/08 07:20

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -176,90 +176,72 @@
176
176
 
177
177
  ```
178
178
 
179
+
180
+
179
- ### urls.py
181
+ ### templates/index.html
180
-
182
+
183
+
184
+
181
- ```urls.py
185
+ ```index.html
186
+
182
-
187
+ <html>
188
+
189
+ <head>
190
+
191
+ <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
192
+
193
+ <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
194
+
183
- from django.urls import path
195
+ </head>
196
+
184
-
197
+ <body>
198
+
185
- from .views import index
199
+ {% for Message in timeline %}
200
+
186
-
201
+ <table border="1">
187
-
188
-
202
+
189
- urlpatterns = [
203
+ <tr>
204
+
190
-
205
+ <th>API_limit</th>
206
+
207
+ <th>画像</th>
208
+
209
+ <th>ツイート内容</th>
210
+
211
+ <th>名前</th>
212
+
213
+ <th>日時</th>
214
+
215
+ </tr>
216
+
217
+ <tr>
218
+
219
+ <td>{{ API_limit }}</td>
220
+
191
- path('index.html', index, name='main'),
221
+ <td><img src="{{ Img }}" /></td>
222
+
192
-
223
+ <td>{{ Text }}</td>
224
+
225
+ <td>{{ Name }}</td>
226
+
227
+ <td>{{ Created_at }}</td>
228
+
229
+ </tr>
230
+
231
+ </table>
232
+
193
- ]
233
+ {% endfor %}
234
+
194
-
235
+ <h2>Error_message</h2>
236
+
195
-
237
+ <h2>{{ Error_message }}</h2>
238
+
239
+ </body>
240
+
241
+ </html>
196
242
 
197
243
  ```
198
244
 
199
- ### templates/index.html
200
-
201
-
202
-
203
- ```index.html
204
-
205
- <html>
206
-
207
- <head>
208
-
209
- <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
210
-
211
- <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
212
-
213
- </head>
214
-
215
- <body>
216
-
217
- {% for Message in timeline %}
218
-
219
- <table border="1">
220
-
221
- <tr>
222
-
223
- <th>API_limit</th>
224
-
225
- <th>画像</th>
226
-
227
- <th>ツイート内容</th>
228
-
229
- <th>名前</th>
230
-
231
- <th>日時</th>
232
-
233
- </tr>
234
-
235
- <tr>
236
-
237
- <td>{{ API_limit }}</td>
238
-
239
- <td><img src="{{ Img }}" /></td>
240
-
241
- <td>{{ Text }}</td>
242
-
243
- <td>{{ Name }}</td>
244
-
245
- <td>{{ Created_at }}</td>
246
-
247
- </tr>
248
-
249
- </table>
250
-
251
- {% endfor %}
252
-
253
- <h2>Error_message</h2>
254
-
255
- <h2>{{ Error_message }}</h2>
256
-
257
- </body>
258
-
259
- </html>
260
-
261
- ```
262
-
263
245
 
264
246
 
265
247
  *forのところに:が入っていたので、削除しましたが思い通りに動いてくれません。

5

修正しました

2020/05/08 07:20

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -204,8 +204,6 @@
204
204
 
205
205
  <html>
206
206
 
207
-
208
-
209
207
  <head>
210
208
 
211
209
  <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
@@ -214,7 +212,7 @@
214
212
 
215
213
  </head>
216
214
 
217
-
215
+ <body>
218
216
 
219
217
  {% for Message in timeline %}
220
218
 
@@ -256,12 +254,18 @@
256
254
 
257
255
  <h2>{{ Error_message }}</h2>
258
256
 
257
+ </body>
258
+
259
259
  </html>
260
260
 
261
261
  ```
262
262
 
263
263
 
264
264
 
265
+ *forのところに:が入っていたので、削除しましたが思い通りに動いてくれません。
266
+
267
+
268
+
265
269
  環境
266
270
 
267
271
  Python3.7.6

4

2020/05/08 07:18

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -250,7 +250,7 @@
250
250
 
251
251
  </table>
252
252
 
253
- {% end for %}
253
+ {% endfor %}
254
254
 
255
255
  <h2>Error_message</h2>
256
256
 

3

.

2020/05/07 07:05

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -216,7 +216,7 @@
216
216
 
217
217
 
218
218
 
219
- {% for Message in timeline: %}
219
+ {% for Message in timeline %}
220
220
 
221
221
  <table border="1">
222
222
 

2

環境追加

2020/05/07 05:44

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -270,6 +270,8 @@
270
270
 
271
271
  Windows10
272
272
 
273
+ 仮想環境:venv
274
+
273
275
 
274
276
 
275
277
  以上となります。

1

2020/05/07 05:22

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -10,6 +10,8 @@
10
10
 
11
11
  コードは以下です↓
12
12
 
13
+ ### views.py
14
+
13
15
 
14
16
 
15
17
  ```views.py
@@ -174,7 +176,7 @@
174
176
 
175
177
  ```
176
178
 
177
-
179
+ ### urls.py
178
180
 
179
181
  ```urls.py
180
182
 
@@ -194,6 +196,8 @@
194
196
 
195
197
  ```
196
198
 
199
+ ### templates/index.html
200
+
197
201
 
198
202
 
199
203
  ```index.html