18 lines
463 B
Plaintext
18 lines
463 B
Plaintext
<%= simple_form_for([:settings,@settings_membership_action]) do |f| %>
|
|
<%= f.error_notification %>
|
|
|
|
<div class="form-inputs">
|
|
<%= f.input :membership_type %>
|
|
<%= f.input :is_active %>
|
|
<%= f.input :gateway_communication_type %>
|
|
<%= f.input :gateway_url %>
|
|
<%= f.input :auth_token %>
|
|
<%= f.input :merchant_account_id %>
|
|
<%= f.input :created_by %>
|
|
</div>
|
|
|
|
<div class="form-actions">
|
|
<%= f.button :submit %>
|
|
</div>
|
|
<% end %>
|