Sha256: c2a3fca11e2684e7f588bff00b840ec59dd875b488c8c5ee54f57ce719ff044b
Contents?: true
Size: 657 Bytes
Versions: 29
Compression:
Stored size: 657 Bytes
Contents
<% source = payment.source %> <% if source.is_a?(Spree::CreditCard) %> <span class="cc-type"> <% unless (cc_type = source.cc_type).blank? %> <%= image_tag "credit_cards/icons/#{cc_type}.png" %> <% end %> <% if source.last_digits %> <%= Spree.t(:ending_in) %> <%= source.last_digits %> <% end %> </span> <br /> <span class="full-name"><%= source.name %></span> <% elsif source.is_a?(Spree::MolliePaymentSource) %> <span class="full-name"><%= source.name %></span> <% else %> <%= content_tag(:span, payment.payment_method.name) %> <% end %> <span class="payment-amount">(<%= payment.display_amount %>)</span> <br />
Version data entries
29 entries across 29 versions & 1 rubygems