質問編集履歴
1
show.html.erbのコードも追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -102,6 +102,70 @@
|
|
102
102
|
|
103
103
|
|
104
104
|
|
105
|
+
show.html.erb
|
106
|
+
|
107
|
+
```
|
108
|
+
|
109
|
+
<div class="row">
|
110
|
+
|
111
|
+
<aside class="col-md-4">
|
112
|
+
|
113
|
+
<section class="user_info">
|
114
|
+
|
115
|
+
<h1>
|
116
|
+
|
117
|
+
<% if @user.image? %>
|
118
|
+
|
119
|
+
<%= image_tag @user.image.thumb.url %>
|
120
|
+
|
121
|
+
<% else %>
|
122
|
+
|
123
|
+
<%= image_tag 'noimage.gif' %>
|
124
|
+
|
125
|
+
<% end %>
|
126
|
+
|
127
|
+
<%= @user.name %>
|
128
|
+
|
129
|
+
</h1>
|
130
|
+
|
131
|
+
</section>
|
132
|
+
|
133
|
+
</aside>
|
134
|
+
|
135
|
+
<div class="col-md-8">
|
136
|
+
|
137
|
+
<% if @user.posts.any? %>
|
138
|
+
|
139
|
+
<h3>Posts (<%= @user.posts.count %>)</h3>
|
140
|
+
|
141
|
+
<ol class="posts">
|
142
|
+
|
143
|
+
<%= render @posts %>
|
144
|
+
|
145
|
+
</ol>
|
146
|
+
|
147
|
+
<% end %>
|
148
|
+
|
149
|
+
</div>
|
150
|
+
|
151
|
+
<div class="col-md-8">
|
152
|
+
|
153
|
+
<h3>投稿する</h3>
|
154
|
+
|
155
|
+
<ol class="posts">
|
156
|
+
|
157
|
+
<%= render 'shared/post_form' %>
|
158
|
+
|
159
|
+
</ol>
|
160
|
+
|
161
|
+
</div>
|
162
|
+
|
163
|
+
</div>
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
```
|
168
|
+
|
105
169
|
form_for(@post)の@postの中身がnil になっているというのはわかっているのですが、イマイチどこを直せばいいのかわかっておりません。
|
106
170
|
|
107
171
|
|