Sha256: 3825e9ad803d474269f804d16d02733caff55c8c13563afac21357f413e6515d

Contents?: true

Size: 502 Bytes

Versions: 2

Compression:

Stored size: 502 Bytes

Contents

<p>
  <%= f.label :amount, t(:amount) %> 
  <%= f.text_field :amount, :size=> 8, :value => @order.outstanding_balance %>
</p>  

<% @payment_methods.each do |method| %>

  <label data-hook="payment_method">
    <%= radio_button_tag "payment[payment_method_id]", method.id, method == @payment_method %> 
    <%= t(method.name, :scope => :payment_methods, :default => method.name) %>
  </label>

  <%= render "admin/payments/source_forms/#{method.method_type}", :payment_method => method %>

<% end %>  

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
spree_core-0.70.0.rc2 app/views/admin/payments/_form.html.erb
spree_core-0.70.RC1 app/views/admin/payments/_form.html.erb