質問編集履歴

3

詳細のエラーメッセージ追加

2021/02/28 10:36

投稿

kammy0603
kammy0603

スコア3

test CHANGED
File without changes
test CHANGED
@@ -16,15 +16,13 @@
16
16
 
17
17
 
18
18
 
19
- ```
20
-
21
19
  Request
22
20
 
23
21
  Parameters:
24
22
 
23
+
24
+
25
- None
25
+ {"_method"=>"get", "authenticity_token"=>"G1A7N1UIfBTXj4iLujzOGnMQj53EPt9gB0L6GXVggsVNEsqIIxN6kzPx6QyLh9KwjxuCvMhanuw0WIFDCMh/iw==", "format"=>"1"}
26
-
27
- ```
28
26
 
29
27
 
30
28
 

2

showを呼ぶViewの記入

2021/02/28 10:35

投稿

kammy0603
kammy0603

スコア3

test CHANGED
File without changes
test CHANGED
@@ -290,7 +290,7 @@
290
290
 
291
291
 
292
292
 
293
-
293
+ # Showを呼ぶView
294
294
 
295
295
  ```
296
296
 

1

showを呼ぶViewの記入

2021/02/28 10:33

投稿

kammy0603
kammy0603

スコア3

test CHANGED
File without changes
test CHANGED
@@ -184,7 +184,7 @@
184
184
 
185
185
  <tr>
186
186
 
187
- <th class="detail-item">活動中の都道府県</th>
187
+ <th class="detail-item">野球経歴</th>
188
188
 
189
189
  <td class="detail-value"><%= @user.term.name %></td>
190
190
 
@@ -192,7 +192,7 @@
192
192
 
193
193
  <tr>
194
194
 
195
- <th class="detail-item">創立年度</th>
195
+ <th class="detail-item">希望する野球レベル</th>
196
196
 
197
197
  <td class="detail-value"><%= @user.level.name %></td>
198
198
 
@@ -200,7 +200,7 @@
200
200
 
201
201
  <tr>
202
202
 
203
- <th class="detail-item">メンバーの平均年齢</th>
203
+ <th class="detail-item">希望活動頻度</th>
204
204
 
205
205
  <td class="detail-value"><%= @user.frequency.name %></td>
206
206
 
@@ -208,7 +208,7 @@
208
208
 
209
209
  <tr>
210
210
 
211
- <th class="detail-item">活動頻度</th>
211
+ <th class="detail-item">在住している都道府県</th>
212
212
 
213
213
  <td class="detail-value"><%= @user.prefecture.name %></td>
214
214
 
@@ -232,9 +232,133 @@
232
232
 
233
233
  </div>
234
234
 
235
+ <%# /商品の概要 %>
236
+
237
+
238
+
239
+ <div class="comment-box">
240
+
241
+ <form>
242
+
243
+ <textarea class="comment-text"></textarea>
244
+
245
+ <p class="comment-warn">
246
+
247
+ 相手のことを考え丁寧なコメントを心がけましょう。
248
+
249
+ <br>
250
+
251
+ 不快な言葉遣いなどは利用制限や退会処分となることがあります。
252
+
253
+ </p>
254
+
255
+ <button type="submit" class="comment-btn">
256
+
257
+ <%= image_tag "comment.png" ,class:"comment-flag-icon" ,width:"20",height:"25"%>
258
+
259
+ <span>コメントする<span>
260
+
261
+ </button>
262
+
263
+ </form>
264
+
265
+ </div>
266
+
267
+ <div class="links">
268
+
269
+ <a href="#" class="change-item-btn">
270
+
271
+ < 前の商品
272
+
273
+ </a>
274
+
275
+ <a href="#" class="change-item-btn">
276
+
277
+ 後ろの商品 >
278
+
279
+ </a>
280
+
281
+ </div>
282
+
283
+ </div>
284
+
285
+
286
+
287
+ <%= render "shared/footer" %>
288
+
235
- ```
289
+ ```
290
+
291
+
292
+
293
+
294
+
236
-
295
+ ```
296
+
237
-
297
+ (users/index.html.erb)
298
+
299
+ <h1>
300
+
301
+ メンバー・助っ人検索
302
+
303
+ </h1>
304
+
305
+ <%= search_form_for @p, url: users_search_path do |f| %>
306
+
307
+ <%= f.label :term_id_eq, '野球歴' %>
308
+
309
+ <%= f.collection_select :term_id_eq, Term.all, :id, :name, include_blank: '指定なし' %>
310
+
311
+ <%= f.label :level_id_eq, '希望する野球レベル ' %>
312
+
313
+ <%= f.collection_select :level_id_eq, Level.all, :id, :name, include_blank: '指定なし' %>
314
+
315
+ <%= f.label :frequency_id_eq, '希望活動頻度' %>
316
+
317
+ <%= f.collection_select :frequency_id_eq, Frequency.all, :id, :name, include_blank: '指定なし' %>
318
+
319
+ <%= f.label :prefecture_id_eq, '都道府県' %>
320
+
321
+ <%= f.collection_select :prefecture_id_eq, Prefecture.all, :id, :name, include_blank: '指定なし' %>
322
+
323
+ <br>
324
+
325
+ <%= f.submit '検索' %>
326
+
327
+ <br>
328
+
329
+ <%# 商品一覧 %>
330
+
331
+ <% @users.each do |user| %>
332
+
333
+ <td>
334
+
335
+ <br>
336
+
337
+ <%= link_to users_show_path(user.id), class: 'user_derail' do %>
338
+
339
+ <li class="member-index">
340
+
341
+ <%= image_tag user.avatar , class: "item-img" %>
342
+
343
+ <%= user.name %>
344
+
345
+ <%= user.term.name %>
346
+
347
+ <%= user.level.name %>
348
+
349
+ <%= user.frequency.name %>
350
+
351
+ <%= user.prefecture.name %>
352
+
353
+ </li>
354
+
355
+ <% end%>
356
+
357
+ <% end %>
358
+
359
+ <% end %>
360
+
361
+ ```
238
362
 
239
363
 
240
364