Sha256: eb49203b662c56d5df9fad9913f965ea612b00adf7cdd905f1b30191ed074411
Contents?: true
Size: 525 Bytes
Versions: 20
Compression:
Stored size: 525 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Apps</h1> <table> <thead> <tr> <th>Name</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @apps.each do |app| %> <tr> <td><%= app.name %></td> <td><%= link_to 'Show', app %></td> <td><%= link_to 'Edit', edit_app_path(app) %></td> <td><%= link_to 'Destroy', app, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New App', new_app_path %>
Version data entries
20 entries across 20 versions & 1 rubygems