質問編集履歴

2

エラー文の追記

2020/11/03 08:30

投稿

suparutan
suparutan

スコア11

test CHANGED
File without changes
test CHANGED
@@ -111,3 +111,7 @@
111
111
 
112
112
 
113
113
  よろしくお願いします。
114
+
115
+
116
+
117
+ ![イメージ説明](a77a9fa95728c483c1746f9f69cc7aa5.png)

1

index viewとエラー分を記載しました。よろしくお願いします。

2020/11/03 08:29

投稿

suparutan
suparutan

スコア11

test CHANGED
File without changes
test CHANGED
@@ -3,6 +3,52 @@
3
3
 
4
4
 
5
5
  投稿内容の削除がしたく、リンクを貼りましたが、エラーになります。
6
+
7
+ ```Ruby
8
+
9
+
10
+
11
+
12
+
13
+ **index.html.haml**
14
+
15
+
16
+
17
+ .header
18
+
19
+ =render "header"
20
+
21
+ .wrapper
22
+
23
+ .right_box
24
+
25
+ .right_box_bar
26
+
27
+ -@posts.each do |post|
28
+
29
+ .right_box_bar_name
30
+
31
+ =post.name
32
+
33
+ .right_box_bar_name_select
34
+
35
+ %ul.right_box_bar
36
+
37
+ %li
38
+
39
+ =link_to"削除",post_path(@post.id),method: :delete, class:'destoroy_btn'
40
+
41
+ %li
42
+
43
+ =link_to"編集",edit_post_path(@post.id), class:'edit_btn'
44
+
45
+ ```
46
+
47
+
48
+
49
+ エラー文
50
+
51
+ ![イメージ説明](357704eff80beb7b6b3956b3c7a4bb81.png)
6
52
 
7
53
 
8
54