質問編集履歴
2
エラー文の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -55,3 +55,39 @@
|
|
55
55
|
としてもうまく行きません。
|
56
56
|
|
57
57
|
なにか間違っているでしょうか?そもそも上の階層はrenderできないものなのでしょうか?
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
エラーは以下の通りです。
|
62
|
+
|
63
|
+
```
|
64
|
+
|
65
|
+
ActionView::MissingTemplate in Myinfomations#index
|
66
|
+
|
67
|
+
Showing /Users/handaryouhei/projects/mercari/app/views/myinfomations/index.html.haml where line #3 raised:
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
Missing partial ../_sidebar with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :coffee, :jbuilder, :haml]}. Searched in:
|
72
|
+
|
73
|
+
* "/Users/handaryouhei/projects/mercari/app/views"
|
74
|
+
|
75
|
+
* "/Users/handaryouhei/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/devise-4.7.1/app/views"
|
76
|
+
|
77
|
+
Extracted source (around line #3):
|
78
|
+
|
79
|
+
1
|
80
|
+
|
81
|
+
2
|
82
|
+
|
83
|
+
3
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
%h1 Myinfomations#index
|
88
|
+
|
89
|
+
%p Find me in app/views/myinfomations/index.html.haml
|
90
|
+
|
91
|
+
=render "../sidebar"
|
92
|
+
|
93
|
+
```
|
1
b.html.hamlのアンダーバー忘れ
test
CHANGED
File without changes
|
test
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
|
|
6
6
|
|
7
|
-
- b.html.haml
|
7
|
+
- _b.html.haml
|
8
8
|
|
9
9
|
```
|
10
10
|
|