Files
openfoodnetwork/app/views/admin/enterprises/form/_contact.html.haml
2023-10-17 13:33:15 +11:00

30 lines
1.0 KiB
Plaintext

.row
.alpha.three.columns
= f.label :contact_name, t('.name')
.omega.eight.columns
= f.text_field :contact_name, { placeholder: t('.name_placeholder') }
.row
.alpha.three.columns
= f.label :email_address, t('.email_address')
= render partial: 'admin/shared/whats_this_tooltip', locals: {tooltip_text: t('.email_address_tip')}
.omega.eight.columns
= f.text_field :email_address, { placeholder: t('.email_address_placeholder') }
.row
.alpha.three.columns
= f.label :phone, t('.phone')
.omega.eight.columns
= f.text_field :phone, { placeholder: t('.phone_placeholder') }
.row
.alpha.three.columns
= f.label :whatsapp_phone, t('.whatsapp_phone')
= render partial: 'admin/shared/whats_this_tooltip', locals: {tooltip_text: t('.whatsapp_phone_tip')}
.omega.eight.columns
= f.text_field :whatsapp_phone, { placeholder: t('.whatsapp_phone_placeholder') }
.row
.alpha.three.columns
= f.label :website, t('.website')
.omega.eight.columns
= f.text_field :website, { placeholder: t('.website_placeholder') }