Sha256: ab31e91d77da08e8a801c7dce9031829927af6126eeae937e63024b5f57e787f

Contents?: true

Size: 852 Bytes

Versions: 7

Compression:

Stored size: 852 Bytes

Contents

<h1>My Orders</h1>

<table class="table tb-checkout-transactions-table">
  <thead>
    <tr>
      <th>Date</th>
      <th>Description</th>
      <th>Card</th>
      <th>Amount</th>
      <th></th>
    </tr>
  </thead>
  <tbody>
    <% cache @transactions do %>
      <% @transactions.each do |transaction| %>
        <% cache transaction do %>
          <tr>
            <td><%= transaction.created_at.strftime('%D') %></td>
            <td><%= transaction.cart.description %></td>
            <td><%= transaction.card_display %> (<%= transaction.card_type.titleize %>)</td>
            <td><%= number_to_currency transaction.amount_charged %></td>
            <td><%= link_to 'Details', tb_checkout_transaction_path(transaction) %>
          </tr>
        <% end %>
      <% end %>
    <% end %>
  </tbody>
</table>
<%= will_paginate @transactions %>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
tb_checkout-1.1.1 app/views/tb_checkout/transactions/index.html.erb
tb_checkout-1.1.0 app/views/tb_checkout/transactions/index.html.erb
tb_checkout-1.0.7 app/views/tb_checkout/transactions/index.html.erb
tb_checkout-1.0.6 app/views/tb_checkout/transactions/index.html.erb
tb_checkout-1.0.5 app/views/tb_checkout/transactions/index.html.erb
tb_checkout-1.0.4 app/views/tb_checkout/transactions/index.html.erb
tb_checkout-1.0.3 app/views/tb_checkout/transactions/index.html.erb