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

13 lines
332 B
Text
Raw Normal View History

<%= 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 %>