質問編集履歴
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -31,3 +31,47 @@
|
|
31
31
|
|
32
32
|
|
33
33
|
私はどこにエラーがあるのか見当もつかないため、もしほしいページや情報がありましたら追記いたします。
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
index.htnl.erb
|
38
|
+
|
39
|
+
```html.erb
|
40
|
+
|
41
|
+
<tbody>
|
42
|
+
|
43
|
+
<% @results.each do |result|%>
|
44
|
+
|
45
|
+
<tr>
|
46
|
+
|
47
|
+
<th><%= result.date %></th>
|
48
|
+
|
49
|
+
<th><%= result.map %></th>
|
50
|
+
|
51
|
+
<th><%= result.MYround %> vs <%= result.OPround %></th>
|
52
|
+
|
53
|
+
<th><%= link_to '詳細', result %></th>
|
54
|
+
|
55
|
+
<th><%= button_to "削除する", method: :delete, data: {confirm: "削除しますか?"} %></th>
|
56
|
+
|
57
|
+
</tr>
|
58
|
+
|
59
|
+
<% end %>
|
60
|
+
|
61
|
+
</tbody>
|
62
|
+
|
63
|
+
```
|
64
|
+
|
65
|
+
routes.rb
|
66
|
+
|
67
|
+
```ruby
|
68
|
+
|
69
|
+
Rails.application.routes.draw do
|
70
|
+
|
71
|
+
resources :results
|
72
|
+
|
73
|
+
root "results#index"
|
74
|
+
|
75
|
+
end
|
76
|
+
|
77
|
+
```
|