Sha256: df6e33821e42cd1254320f8afee4fe2c2270e394368b7371382f1ee2e9941fa6
Contents?: true
Size: 701 Bytes
Versions: 26
Compression:
Stored size: 701 Bytes
Contents
<% if @payment.capture_events.exists? %> <h3><%= plural_resource_name(Spree::PaymentCaptureEvent) %></h3> <table class="index" id="capture_events"> <thead> <tr data-hook="payments_header"> <th><%= "#{Spree.t('date')}/#{Spree.t('time')}" %></th> <th><%= Spree.t(:amount) %></th> </tr> </thead> <tbody> <% @payment.capture_events.each do |capture_event| %> <tr id="<%= dom_id(capture_event) %>" data-hook="capture_events_row" class="<%= cycle('odd', 'even')%>"> <td><%= pretty_time(capture_event.created_at) %></td> <td><%= capture_event.display_amount %></td> </tr> <% end %> </tbody> </table> <% end %>
Version data entries
26 entries across 26 versions & 1 rubygems