Sha256: a88d647237033d35c330119487ffb91f335ce50edc3957bf2e0f698d78f50c6d

Contents?: true

Size: 840 Bytes

Versions: 4

Compression:

Stored size: 840 Bytes

Contents

<h1>Listing site_details</h1>

<table>
  <tr>
    <th>Site</th>
    <th>Site url</th>
    <th>Paypal email address</th>
    <th>Owner ip address</th>
    <th>Site type</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<% @site_details.each do |site_detail| %>
  <tr>
    <td><%= site_detail.site_id %></td>
    <td><%= site_detail.site_url %></td>
    <td><%= site_detail.paypal_email_address %></td>
    <td><%= site_detail.owner_ip_address %></td>
    <td><%= site_detail.site_type %></td>
    <td><%= link_to 'Show', [:service, site_detail] %></td>
    <td><%= link_to 'Edit', edit_service_site_detail_path(site_detail) %></td>
    <td><%= link_to 'Destroy', [:service, site_detail], :confirm => 'Are you sure?', :method => :delete %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New Site detail', new_site_detail_path %>

Version data entries

4 entries across 4 versions & 1 rubygems

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