Sha256: 63c077840733a7de487bdea065c1c5dfd6907b4835e6d48515286b0850f8283e

Contents?: true

Size: 997 Bytes

Versions: 4

Compression:

Stored size: 997 Bytes

Contents

<div class="table-responsive">
  <table class="table table-striped table-hover">
    <thead>
      <th>Transaction ID</th>
      <th>Billing Name</th>
      <th>Card</th>
      <th>Amount Charged</th>
      <th>Date</th>
      <th>Status</th>
      <th></th>
    </thead>
    <tbody>
      <% transactions.each do |transaction| %>
        <tr>
          <td><%= transaction.gateway_transaction_id %></td>
          <td class="no-wrap"><%= transaction.billing_full_name %></td>
          <td class="no-wrap"><%= transaction.card_display %> (<%= transaction.card_type %>)</td>
          <td><%= number_to_currency transaction.amount_charged %></td>
          <td><%= transaction.created_at.strftime('%D %-l:%M %p') %></td>
          <td><%= tb_checkout_status_label_for_transaction(transaction.status) %></td>
          <td><%= link_to 'Detail', tb_checkout_admin_transaction_path(transaction), :class => 'btn btn-sm btn-default' %></td>
        </tr>
      <% end %>
    </tbody>
  </table>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
tb_checkout-1.1.1 app/views/tb_checkout/admin/transactions/_table.html.erb
tb_checkout-1.1.0 app/views/tb_checkout/admin/transactions/_table.html.erb
tb_checkout-1.0.7 app/views/tb_checkout/admin/transactions/_table.html.erb
tb_checkout-1.0.6 app/views/tb_checkout/admin/transactions/_table.html.erb