Sha256: 35e1b6cacadc1a70b06263fc73a6419aefe88746040116c67ef5ca3e7db9b53e
Contents?: true
Size: 614 Bytes
Versions: 4
Compression:
Stored size: 614 Bytes
Contents
<% if @order.paypal_payment %> <b><%= t("Paypal 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.paypal_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
4 entries across 4 versions & 1 rubygems