回答編集履歴
2
test
CHANGED
@@ -62,6 +62,10 @@
|
|
62
62
|
|
63
63
|
</table>
|
64
64
|
|
65
|
+
<!-- ここは削除 <input class="btn btn-outline-success" type="submit" value="保存する"> -->
|
66
|
+
|
67
|
+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js?ver=1.12.4"></script>
|
68
|
+
|
65
69
|
```
|
66
70
|
|
67
71
|
|
1
修正範囲表示部分の拡張
test
CHANGED
@@ -7,6 +7,22 @@
|
|
7
7
|
|
8
8
|
|
9
9
|
```html
|
10
|
+
|
11
|
+
<table class="table table-bordered table-striped">
|
12
|
+
|
13
|
+
<thead>
|
14
|
+
|
15
|
+
<tr>
|
16
|
+
|
17
|
+
<th scope="col">#</th>
|
18
|
+
|
19
|
+
<th scope="col">書籍名</th>
|
20
|
+
|
21
|
+
<th scope="col">競合人数</th>
|
22
|
+
|
23
|
+
</tr>
|
24
|
+
|
25
|
+
</thead>
|
10
26
|
|
11
27
|
<tbody>
|
12
28
|
|
@@ -43,6 +59,8 @@
|
|
43
59
|
{% endfor %}
|
44
60
|
|
45
61
|
</tbody>
|
62
|
+
|
63
|
+
</table>
|
46
64
|
|
47
65
|
```
|
48
66
|
|