質問編集履歴
1
「detail.html」を2回書いてしまったので1つを削除しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -278,11 +278,13 @@
|
|
278
278
|
|
279
279
|
```
|
280
280
|
|
281
|
+
|
282
|
+
|
281
283
|
```HTML
|
282
284
|
|
283
285
|
|
284
286
|
|
285
|
-
<!-- ファイル名「
|
287
|
+
<!-- ファイル名「create.html」-->
|
286
288
|
|
287
289
|
|
288
290
|
|
@@ -292,48 +294,24 @@
|
|
292
294
|
|
293
295
|
{% block body %}
|
294
296
|
|
297
|
+
<form action="/" method="POST">
|
298
|
+
|
295
|
-
<
|
299
|
+
<label for="title">title</label>
|
300
|
+
|
296
|
-
|
301
|
+
<input type="text" name="title">
|
302
|
+
|
297
|
-
<
|
303
|
+
<label for="detail">Detail</label>
|
304
|
+
|
298
|
-
|
305
|
+
<input type="text" name="detail">
|
306
|
+
|
299
|
-
<
|
307
|
+
<label for="due">Due</label>
|
308
|
+
|
309
|
+
<input type="date" name="due" required>
|
310
|
+
|
311
|
+
<input type="submit" value="Create">
|
312
|
+
|
313
|
+
</form>
|
300
314
|
|
301
315
|
{% endblock %}
|
302
316
|
|
303
317
|
```
|
304
|
-
|
305
|
-
```HTML
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
<!-- ファイル名「create.html」-->
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
{% extends "base.html" %}
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
{% block body %}
|
318
|
-
|
319
|
-
<form action="/" method="POST">
|
320
|
-
|
321
|
-
<label for="title">title</label>
|
322
|
-
|
323
|
-
<input type="text" name="title">
|
324
|
-
|
325
|
-
<label for="detail">Detail</label>
|
326
|
-
|
327
|
-
<input type="text" name="detail">
|
328
|
-
|
329
|
-
<label for="due">Due</label>
|
330
|
-
|
331
|
-
<input type="date" name="due" required>
|
332
|
-
|
333
|
-
<input type="submit" value="Create">
|
334
|
-
|
335
|
-
</form>
|
336
|
-
|
337
|
-
{% endblock %}
|
338
|
-
|
339
|
-
```
|