20 lines
618 B
Plaintext
20 lines
618 B
Plaintext
<%= simple_form_for([:settings, @settings_membership_setting]) 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 %>
|
|
<label><%= f.check_box :discount %>Discount</label><br/>
|
|
<label><%= f.check_box :rebate %>Rebate</label><br/>
|
|
<label><%= f.check_box :bonus %>Bonus</label><br/>
|
|
<label><%= f.check_box :point %>Points</label>
|
|
</div>
|
|
|
|
<div class="form-actions">
|
|
<%= f.button :submit %>
|
|
</div>
|
|
<% end %>
|