質問編集履歴
1
edit.html.erb に飛ぶ前の show.html.erb です。
test
CHANGED
File without changes
|
test
CHANGED
@@ -141,3 +141,39 @@
|
|
141
141
|
|
142
142
|
|
143
143
|
よろしくお願いいたします。
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
edit.html.erb に飛ぶ前の show.html.erb です。
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
show.html.erb
|
152
|
+
|
153
|
+
```
|
154
|
+
|
155
|
+
<h2><%= @list.name %></h2>
|
156
|
+
|
157
|
+
<p><%= @list.description %></P>
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
<hr>
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
<% @list.items.each do |item| %>
|
166
|
+
|
167
|
+
<%= item.name %>
|
168
|
+
|
169
|
+
<%= link_to "編集", edit_list_item_path(item.list, item) %>
|
170
|
+
|
171
|
+
<%= link_to "削除",
|
172
|
+
|
173
|
+
[item.list, item], method: :delete, data: {confirm: "本当によろしいですか?"} %>
|
174
|
+
|
175
|
+
<br>
|
176
|
+
|
177
|
+
<% end %>
|
178
|
+
|
179
|
+
```
|