Sha256: 01c10def05ab63f1900ca36f4070a5a606b9defcb99d4fbb5380dc09217ca901
Contents?: true
Size: 1.46 KB
Versions: 6
Compression:
Stored size: 1.46 KB
Contents
<fieldset class="no-border-bottom"> <legend><%= Spree::Payment.model_name.human(count: :other) %></legend> <table class="index"> <thead> <tr data-hook="payments_header"> <th><%= Spree::Payment.human_attribute_name(:number) %></th> <th><%= Spree::Payment.human_attribute_name(:created_at) %></th> <th><%= Spree::Payment.human_attribute_name(:amount) %></th> <th><%= Spree::PaymentMethod.model_name.human %></th> <th><%= Spree::Payment.human_attribute_name(:response_code) %></th> <th><%= Spree::Payment.human_attribute_name(:state) %></th> </tr> </thead> <tbody> <% payments.each do |payment| %> <tr> <td> <%= link_to payment.number, spree.admin_order_payment_path(@order, payment) %> </td> <td> <%= pretty_time(payment.created_at) %> </td> <td class="align-center amount"> <%= payment.display_amount.to_html %> </td> <td class="align-center"> <%= payment_method_name(payment) %> </td> <td class="align-center"> <%= payment.transaction_id %> </td> <td class="align-center"> <span class="state <%= payment.state %>"> <%= Spree.t(payment.state, :scope => :payment_states, :default => payment.state.capitalize) %> </span> </td> </tr> <% end %> </tbody> </table> </fieldsset>
Version data entries
6 entries across 6 versions & 1 rubygems