Sha256: d7d80e35fd5179895f62eaca6b7fbb192624efe7659421955884a507e04f4744
Contents?: true
Size: 941 Bytes
Versions: 6
Compression:
Stored size: 941 Bytes
Contents
<h1>Listing mailinglists</h1> <table> <tr> <% for column in Mailinglist.content_columns %> <th><%= column.human_name %></th> <% end %> </tr> <% for mailinglist in @mailinglists %> <tr> <% for column in Mailinglist.content_columns %> <td><%=h mailinglist.send(column.name) %></td> <% end %> <td><%= link_to 'Show', :action => 'show', :id => mailinglist %></td> <td><%= link_to 'Edit', :action => 'edit', :id => mailinglist %></td> <td><%= link_to 'Destroy', { :action => 'destroy', :id => mailinglist }, :post => true, :confirm => 'Are you sure you want to destroy this mailinglist?' %> </tr> <% end %> </table> <%= link_to 'Previous page', { :page => @mailinglist_pages.current.previous } if @mailinglist_pages.current.previous %> <%= link_to 'Next page', { :page => @mailinglist_pages.current.next } if @mailinglist_pages.current.next %> <br /> <%= link_to 'New mailinglist', :action => 'new' %>
Version data entries
6 entries across 6 versions & 1 rubygems