13 lines
332 B
Text
13 lines
332 B
Text
|
<%= simple_form_for contact, url: settings_contacts_path do |f| %>
|
||
|
<%= f.error_notification %>
|
||
|
|
||
|
<div class="form-inputs">
|
||
|
<%= f.association :contact_network, collection: ContactNetwork.all %>
|
||
|
<%= f.input :value %>
|
||
|
</div>
|
||
|
|
||
|
<div class="form-actions">
|
||
|
<%= f.button :submit, translate(:create) %>
|
||
|
</div>
|
||
|
<% end %>
|