Sha256: 31e91f8b7a78355e253993fc5c49679eecfa2051a4fac96948dd151d2eda922c
Contents?: true
Size: 625 Bytes
Versions: 35
Compression:
Stored size: 625 Bytes
Contents
<% if @order.pag_seguro_payment %> <b><%= t("PagSeguro Transaction") %></b> <table class="basic-table"> <tr> <th><%= t("Amount") %></th> <th><%= t("Fee") %></th> <th><%= t("Status") %></th> <th><%= t("Transaction Id") %></th> <th><%= t("Received At") %></th> </tr> <% @order.pag_seguro_payment.txns.each do |t| %> <tr> <td><%=number_to_currency t.amount %></td> <td><%=number_to_currency t.fee %></td> <td><%=t.status %></td> <td><%=t.transaction_id %></td> <td><%=t.received_at %></td> </tr> <% end %> </table> <% end %>
Version data entries
35 entries across 35 versions & 1 rubygems