回答編集履歴
4
変更
test
CHANGED
@@ -12,4 +12,4 @@
|
|
12
12
|
|
13
13
|
モデル名
|
14
14
|
|
15
|
-
`
|
15
|
+
`EmploymentStatus`
|
3
修正
test
CHANGED
@@ -7,3 +7,9 @@
|
|
7
7
|
= form.collection_select :カラム名
|
8
8
|
|
9
9
|
のイメージです
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
モデル名
|
14
|
+
|
15
|
+
`employment_status`
|
2
説明の追加
test
CHANGED
@@ -3,3 +3,7 @@
|
|
3
3
|
= form.collection_select :employment_status_id, EmploymentStatus.all, :id, :name, class: 'products__detail__status__box'
|
4
4
|
|
5
5
|
```
|
6
|
+
|
7
|
+
= form.collection_select :カラム名
|
8
|
+
|
9
|
+
のイメージです
|
1
回答の追記
test
CHANGED
@@ -1 +1,5 @@
|
|
1
|
+
```
|
2
|
+
|
1
|
-
cont
|
3
|
+
= form.collection_select :employment_status_id, EmploymentStatus.all, :id, :name, class: 'products__detail__status__box'
|
4
|
+
|
5
|
+
```
|