Sha256: 8d01a4d7051c0f16f92d65af5dae7bae65038a3cc1a01c94693a9b129729afc5

Contents?: true

Size: 714 Bytes

Versions: 4

Compression:

Stored size: 714 Bytes

Contents

<h1>Listing site_signups</h1>

<table>
  <tr>
    <th>Name</th>
    <th>Email address</th>
    <th>Request 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', site_signup %></td>
    <td><%= link_to 'Edit', edit_site_signup_path(site_signup) %></td>
    <td><%= link_to 'Destroy', site_signup, :confirm => 'Are you sure?', :method => :delete %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New Site signup', new_site_signup_path %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ccs_core_gem-0.0.5 app/views/service/site_signups/index.html.erb
ccs_core_gem-0.0.4 app/views/service/site_signups/index.html.erb
ccs_core_gem-0.0.3 app/views/service/site_signups/index.html.erb
ccs_core_gem-0.0.2 app/views/service/site_signups/index.html.erb