1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/views/settings/contacts/_form.html.erb

9 lines
251 B
Text
Raw Normal View History

<%= simple_form_for contact, url: settings_contacts_path do |f| %>
<%= f.error_notification %>
2019-09-03 01:37:22 -04:00
<%= f.association :contact_network, collection: ContactNetwork.all %>
<%= f.input :value %>
2019-09-03 01:37:22 -04:00
<%= f.button :submit, translate(:create) %>
<% end %>