Sha256: 0d62f9d96a7d19e6e6e3e87753a865a72c566dddfbf7888286abee2e0af564b3
Contents?: true
Size: 711 Bytes
Versions: 6
Compression:
Stored size: 711 Bytes
Contents
<% if @payment.capture_events.exists? %> <h3><%= Spree::PaymentCaptureEvent.model_name.human(count: :other) %></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
6 entries across 6 versions & 1 rubygems