Sha256: f572ceb27b8a8a16eb8843abea07678697f0474f1725cc660c8bca02b04b82a8
Contents?: true
Size: 396 Bytes
Versions: 1
Compression:
Stored size: 396 Bytes
Contents
<h1>Listing alunos</h1> <table> <tr> <th></th> <th></th> <th></th> </tr> <% @alunos.each do |aluno| %> <tr> <td><%= link_to 'Show', aluno %></td> <td><%= link_to 'Edit', edit_aluno_path(aluno) %></td> <td><%= link_to 'Destroy', aluno, confirm: 'Are you sure?', method: :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Aluno', new_aluno_path %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
omniauth-sabia-1.0.1 | app/views/alunos/index.html.erb |