Sha256: 5bd1649bca3fe17c813d99bb2f46026e17c7167bb899e2a6e5c79f4db622a56d

Contents?: true

Size: 695 Bytes

Versions: 6

Compression:

Stored size: 695 Bytes

Contents

<h1>Listing underlyings</h1>

<table>
  <tr>
    <th>Contract</th>
    <th>Con_id</th>
    <th>Delta</th>
    <th>Price</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<% @underlyings.each do |underlying| %>
  <tr>
    <td><%= underlying.contract_id %></td>
    <td><%= underlying.con_id %></td>
    <td><%= underlying.delta %></td>
    <td><%= underlying.price %></td>
    <td><%= link_to 'Show', underlying %></td>
    <td><%= link_to 'Edit', edit_underlying_path(underlying) %></td>
    <td><%= link_to 'Destroy', underlying, :method => :delete, :data => { :confirm => 'Are you sure?' } %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New Underlying', new_underlying_path %>

Version data entries

6 entries across 6 versions & 1 rubygems

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