14 lines
276 B
Plaintext
14 lines
276 B
Plaintext
<%= simple_form_for(@settings_lookup) do |f| %>
|
|
<%= f.error_notification %>
|
|
|
|
<div class="form-inputs">
|
|
<%= f.input :lookup_type %>
|
|
<%= f.input :name %>
|
|
<%= f.input :value %>
|
|
</div>
|
|
|
|
<div class="form-actions">
|
|
<%= f.button :submit %>
|
|
</div>
|
|
<% end %>
|