質問編集履歴

2

誤コード

2021/01/17 12:59

投稿

mayuphoo
mayuphoo

スコア13

test CHANGED
File without changes
test CHANGED
@@ -152,7 +152,7 @@
152
152
 
153
153
  <div class="user__card">
154
154
 
155
- <%= render partial: 'prototype', collection: @prototypes, locals: {prototype: @prototype}%>
155
+ <%= render partial: 'prototype', collection: @prototypes %>
156
156
 
157
157
  </div>
158
158
 

1

誤コード

2021/01/17 12:59

投稿

mayuphoo
mayuphoo

スコア13

test CHANGED
File without changes
test CHANGED
@@ -164,59 +164,29 @@
164
164
 
165
165
  ```
166
166
 
167
- ●_form.html.erb
167
+ ●_prototype.html.erb
168
-
168
+
169
- ```
169
+ ```
170
-
171
- <%= form_with model: prototype,local: true do |f|%>
170
+
172
-
173
- <div class="field">
171
+ <div class="card">
172
+
174
-
173
+ <%= link_to image_tag(prototype.image, class: :card__img ), prototype_path(prototype.id) %>
174
+
175
+ <div class="card__body">
176
+
177
+ <%= link_to prototype.title, prototype_path(prototype.id), method: :get, class: :card__title %>
178
+
175
- <%= f.label :title, "プロトタイプの名称" %><br />
179
+ <p class="card__summary">
176
-
180
+
177
- <%= f.text_field :title %>
181
+ <%= prototype.catch_copy %>
182
+
183
+ </p>
184
+
185
+ <%= link_to prototype.user.name, user_path(prototype.user_id), class: :card__user %>
178
186
 
179
187
  </div>
180
188
 
181
-
182
-
183
- <div class="field">
184
-
185
- <%= f.label :catch_copy, "キャッチコピー" %><br />
186
-
187
- <%= f.text_area :catch_copy, class: :form__text %>
188
-
189
- </div>
189
+ </div>
190
-
191
-
192
-
193
- <div class="field">
194
-
195
- <%= f.label :concept, "コンセプト" %><br />
196
-
197
- <%= f.text_area :concept, class: :form__text %>
198
-
199
- </div>
200
-
201
-
202
-
203
- <div class="field">
204
-
205
- <%= f.label :image, "プロトタイプの画像" %><br />
206
-
207
- <%= f.file_field :image %>
208
-
209
- </div>
210
-
211
-
212
-
213
- <div class="actions">
214
-
215
- <%= f.submit "保存する", class: :form__btn %>
216
-
217
- </div>
218
-
219
- <% end %>●_form.html.erb
220
190
 
221
191
  ```
222
192
 
@@ -230,7 +200,7 @@
230
200
 
231
201
 
232
202
 
233
- show.html.erbのrenderメソッドにて、_form.html.erbのテンプレートファイルがうまく呼び出せていないのが原因だと思うのですが、変数の定義などを見てもどこが問題なのか分からず困っています…。
203
+ show.html.erbのrenderメソッドにて、_prototype.html.erbのテンプレートファイルがうまく呼び出せていないのが原因だと思うのですが、変数の定義などを見てもどこが問題なのか分からず困っています…。
234
204
 
235
205
  どなたかご回答いただけると、助かります。
236
206