8 lines
251 B
Text
8 lines
251 B
Text
<%= simple_form_for contact, url: settings_contacts_path do |f| %>
|
|
<%= f.error_notification %>
|
|
|
|
<%= f.association :contact_network, collection: ContactNetwork.all %>
|
|
<%= f.input :value %>
|
|
|
|
<%= f.button :submit, translate(:create) %>
|
|
<% end %>
|