Sha256: 21ef6722c6a0509f65a592e0752a9bd5299ce5c4cca953f45f5cd04cfbf54592

Contents?: true

Size: 667 Bytes

Versions: 1

Compression:

Stored size: 667 Bytes

Contents

<h1>Listing doses</h1>

<table>
  <tr>
    <th>Manha</th>
    <th>Tarde</th>
    <th>Noite</th>
    <th>Medicacao</th>
    <th>Tipo insulina</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<% @doses.each do |dose| %>
  <tr>
    <td><%= dose.manha %></td>
    <td><%= dose.tarde %></td>
    <td><%= dose.noite %></td>
    <td><%= dose.medicacao_id %></td>
    <td><%= dose.tipo_insulina_id %></td>
    <td><%= link_to 'Show', dose %></td>
    <td><%= link_to 'Edit', edit_dose_path(dose) %></td>
    <td><%= link_to 'Destroy', dose, confirm: 'Are you sure?', method: :delete %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New Dose', new_dose_path %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
omniauth-sabia-1.0.1 app/views/doses/index.html.erb