Sha256: 97c8f3957ae4903802ca1ac0b19b333d5fddc401eb928ff55bbd464eb618d63a
Contents?: true
Size: 760 Bytes
Versions: 2
Compression:
Stored size: 760 Bytes
Contents
<h1>Listing site_signups</h1> <table> <tr> <th>Name</th> <th>Email address</th> <th>Requested url</th> <th>Active</th> <th></th> <th></th> <th></th> </tr> <% @site_signups.each do |site_signup| %> <tr> <td><%= site_signup.name %></td> <td><%= site_signup.email_address %></td> <td><%= site_signup.requested_url %></td> <td><%= site_signup.active %></td> <td><%= link_to 'Show', [:services, site_signup] %></td> <td><%= link_to 'Edit', edit_services_site_signup_path(site_signup) %></td> <td><%= link_to 'Destroy', [:services, site_signup], :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Site signup', new_services_site_signup_path %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ccs_core_gem-0.0.7 | app/views/services/site_signups/index.html.erb |
ccs_core_gem-0.0.6 | app/views/services/site_signups/index.html.erb |