Sha256: 348b2b102ed5d9644dd6e953e05dc29279e13a5735bd0a8a38feb4362beced84
Contents?: true
Size: 458 Bytes
Versions: 70
Compression:
Stored size: 458 Bytes
Contents
<h1>Listing projects</h1> <table> <tr> <th>Title</th> </tr> <% for project in @projects %> <tr> <td><%=h project.title %></td> <td><%= link_to 'Show', project_path(project) %></td> <td><%= link_to 'Edit', edit_project_path(project) %></td> <td><%= link_to 'Destroy', project_path(project), :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New project', new_project_path %>
Version data entries
70 entries across 70 versions & 22 rubygems