Sha256: d98de4e87fe05a950b462f358a5663b10e30691ce0b6828b9da8a501513a0283
Contents?: true
Size: 409 Bytes
Versions: 7
Compression:
Stored size: 409 Bytes
Contents
<h1>Listing forums</h1> <table> <tr> <th>Name</th> </tr> <% @forums.each do |forum| %> <tr> <td><%=h forum.name %></td> <td><%= link_to 'Show', forum %></td> <td><%= link_to 'Edit', edit_forum_path(forum) %></td> <td><%= link_to 'Destroy', forum, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New forum', new_forum_path %>
Version data entries
7 entries across 7 versions & 1 rubygems