mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
* Add new attribute instagram_placeholder to local yml * Add placeholder to instagram link input * Add migration to fix wrong instagram links * Add new attribute facebook_placeholder to local yml * Add placeholder to facebook link input * Add new attribute linkedin_placeholder to local yml * Add placeholder to linkedin link input * Change each for find_each in migration * Add new attribute instagram_placeholder to local yml * Add migration to fix wrong instagram links * Add new attribute linkedin_placeholder to local yml * Add placeholder to linkedin link input
20 lines
632 B
Plaintext
20 lines
632 B
Plaintext
.row
|
|
.alpha.three.columns
|
|
= f.label :facebook, 'Facebook'
|
|
.omega.eight.columns
|
|
= f.text_field :facebook, { placeholder: t('.facebook_placeholder') }
|
|
.row
|
|
.alpha.three.columns
|
|
= f.label :instagram, 'Instagram'
|
|
.omega.eight.columns
|
|
= f.text_field :instagram, { placeholder: t('.instagram_placeholder') }
|
|
.row
|
|
.alpha.three.columns
|
|
= f.label :linkedin, 'LinkedIn'
|
|
.omega.eight.columns
|
|
= f.text_field :linkedin, { placeholder: t('.linkedin_placeholder') }
|
|
.row
|
|
.alpha.three.columns
|
|
= f.label :twitter
|
|
.omega.eight.columns
|
|
= f.text_field :twitter, { placeholder: t('.twitter_placeholder') } |