mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
15 lines
407 B
Plaintext
15 lines
407 B
Plaintext
= f.field_container :name do
|
|
= f.label :name
|
|
%br/
|
|
= f.text_field :name
|
|
|
|
= f.field_container :on_front_page do
|
|
= f.label :on_front_page, 'On front page?'
|
|
%br/
|
|
= f.check_box :on_front_page
|
|
|
|
= f.field_container :enterprise_ids do
|
|
= f.label :enterprise_ids, 'Enterprises'
|
|
%br/
|
|
= f.collection_select :enterprise_ids, Enterprise.all, :id, :name, {}, {class: "select2 fullwidth", multiple: true}
|