Sha256: 10e2691ec30069001dbf1252706befd1805e327483528fa1db9eeb654695c62e
Contents?: true
Size: 574 Bytes
Versions: 2
Compression:
Stored size: 574 Bytes
Contents
<fieldset> <legend><%= t('transactions') %></legend> <table class="index"> <tr data-hook="transactions_header"> <th><%= t('type') %></th> <th><%= 'date' %></th> <th><%= t('amount') %></th> <th><%= t('response_code') %></th> </tr> <% for txn in txns %> <tr data-hook="transaction_row"> <td> <%= txn.txn_type_name %> </td> <td><%= txn.created_at.to_date %></td> <td><%= number_to_currency txn.amount %></td> <td><%= txn.response_code %></td> </tr> <% end %> </table> </fieldset>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spree_core-0.70.0.rc2 | app/views/admin/payments/_transaction_list.html.erb |
spree_core-0.70.RC1 | app/views/admin/payments/_transaction_list.html.erb |