Sha256: b2eb42d8dbeedf2e3a2c9cf23f46dd091a63953f79887891f64fd041071df8bc
Contents?: true
Size: 1.44 KB
Versions: 1
Compression:
Stored size: 1.44 KB
Contents
<div data-hook="admin_payment_form_fields" class="row"> <div class="alpha three columns"> <div class="field"> <%= f.label :amount, Spree.t(:amount) %> <%= f.text_field :amount, :value => @order.outstanding_balance, :class => 'fullwidth' %> </div> </div> <div class="omega nine columns"> <div class="field"> <label><%= Spree.t(:payment_method) %></label> <ul> <% @payment_methods.each do |method| %> <li data-id="<%= Spree.t(method.name, :scope => :payment_methods, :default => method.name).parameterize %>"> <label data-hook="payment_method_field"> <%= radio_button_tag 'payment[payment_method_id]', method.id, method == @payment_method, { class: "payment_methods_radios" } %> <%= Spree.t(method.name, :scope => :payment_methods, :default => method.name) %> </label> </li> <% end %> </ul> <div class="payment-method-settings"> <% @payment_methods.each do |method| %> <div class="payment-methods" id="payment_method_<%= method.id %>"> <% if method.source_required? %> <br /> <%= render :partial => "spree/admin/payments/source_forms/#{method.method_type}", :locals => { :payment_method => method, previous_cards: method.reusable_sources(@order) } %> <% end %> </div> <% end %> </div> </div> </div> </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
spree_backend-2.2.2 | app/views/spree/admin/payments/_form.html.erb |