Sha256: 41c8374d5cd844f6c5ff9184044ea2600c217436b5d1a86a57fc2947dcba0b3c
Contents?: true
Size: 617 Bytes
Versions: 1
Compression:
Stored size: 617 Bytes
Contents
<h1>Listing respostas</h1> <table> <tr> <th>Profissional</th> <th>Consulta</th> <th>Mensagem</th> <th></th> <th></th> <th></th> </tr> <% @respostas.each do |resposta| %> <tr> <td><%= resposta.profissional_id %></td> <td><%= resposta.consulta_id %></td> <td><%= resposta.mensagem %></td> <td><%= link_to 'Show', resposta %></td> <td><%= link_to 'Edit', edit_resposta_path(resposta) %></td> <td><%= link_to 'Destroy', resposta, confirm: 'Are you sure?', method: :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Resposta', new_resposta_path %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
omniauth-sabia-1.0.1 | app/views/respostas/index.html.erb |