回答編集履歴
1
追記
test
CHANGED
@@ -13,3 +13,17 @@
|
|
13
13
|
`%td= image_tag @cafeteria.user.profile_image.to_s` です
|
14
14
|
|
15
15
|
(to_sでよかったけ、、という不安あり)
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
追記
|
20
|
+
|
21
|
+
Cafeteria の viewで
|
22
|
+
|
23
|
+
= attachment_image_tag @user, :profile_image,
|
24
|
+
|
25
|
+
としても、cntrollerで @user 定義していないからだめですよ。
|
26
|
+
|
27
|
+
= attachment_image_tag @cafeteria.user, :profile_image,
|
28
|
+
|
29
|
+
に
|