Sha256: e55d20e73f8d1746ea3678c1cdabcd1b38cbb215f6cc1925fac5ade2487b8166

Contents?: true

Size: 1011 Bytes

Versions: 4

Compression:

Stored size: 1011 Bytes

Contents

<h1>Listing Combo Legs</h1>

<table>
  <tr>
    <th>Combo</th>
    <th>Leg contract</th>
    <th>Con</th>
    <th>Side</th>
    <th>Ratio</th>
    <th>Exchange</th>
    <th>Exempt code</th>
    <th>Short sale slot</th>
    <th>Open close</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<% @combo_legs.each do |combo_leg| %>
  <tr>
    <td><%= combo_leg.combo_id %></td>
    <td><%= combo_leg.leg_contract_id %></td>
    <td><%= combo_leg.con_id %></td>
    <td><%= combo_leg.side %></td>
    <td><%= combo_leg.ratio %></td>
    <td><%= combo_leg.exchange %></td>
    <td><%= combo_leg.exempt_code %></td>
    <td><%= combo_leg.short_sale_slot %></td>
    <td><%= combo_leg.open_close %></td>
    <td><%= link_to 'Show', combo_leg %></td>
    <td><%= link_to 'Edit', edit_combo_leg_path(combo_leg) %></td>
    <td><%= link_to 'Destroy', combo_leg, :method => :delete, :data => { :confirm => 'Are you sure?' } %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New Combo Leg', new_combo_leg_path %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ib-ruby-0.9.2 app/views/ib/combo_legs/index.html.erb
ib-ruby-0.9.1 app/views/ib/combo_legs/index.html.erb
ib-ruby-0.9.0 app/views/ib/combo_legs/index.html.erb
ib-ruby-0.8.5 app/views/ib/combo_legs/index.html.erb