<table>
<tr>
   <td width="50px"></td>
   <td width="100px" align="center"><strong>Shares</strong></td>
   <td width="100px" align="center"><strong>Cost</strong></td>
  </tr>
  <% for trade in @trade_list %>
    <tr>
      <td width="50px">
        <%= link_to_remote trade.market.name, :url => {:controller => "market", :action => "info", :id => trade.market.id},
             :update => "market_list"  %>
      </td>
      <td width="100px" align="right"><%= trade.shares %></td>
      <td width="100px" align="right"><%= number_to_currency(trade.cost) %></td>
    </tr>
  <% end %>
</table>

<p>Back to: <%= link_to_remote "Market Board", :url => {:controller => "market", :action => "list"}, :update => "market_list" %></p>
