Sha256: aff5d630f0dd50a8c44ed3735b8736aa31c8ab3f77997336181a85b4fe357164
Contents?: true
Size: 676 Bytes
Versions: 71
Compression:
Stored size: 676 Bytes
Contents
<% if @payment.capture_events.exists? %> <h3><%= Spree.t(:capture_events) %></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
71 entries across 71 versions & 2 rubygems