Sha256: a4580e040d5934241e0ee5de5b683943094d234ac7b5a741d118b2db6ac415e6

Contents?: true

Size: 841 Bytes

Versions: 7

Compression:

Stored size: 841 Bytes

Contents

<p id="notice"><%= notice %></p>

<h1>Listing Sites</h1>

<table>
  <thead>
    <tr>
      <th>Epom</th>
      <th>Name</th>
      <th>Url</th>
      <th>Description</th>
      <th>Email</th>
      <th>Category</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @sites.each do |site| %>
      <tr>
        <td><%= site.epom_id %></td>
        <td><%= site.name %></td>
        <td><%= site.url %></td>
        <td><%= site.description %></td>
        <td><%= site.email %></td>
        <td><%= site.category_id %></td>
        <td><%= link_to 'Show', site %></td>
        <td><%= link_to 'Edit', edit_site_path(site) %></td>
        <td><%= link_to 'Destroy', site, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Site', new_site_path %>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
epom_rails-0.4.9 test/dummy/app/views/sites/index.html.erb
epom_rails-0.4.8 test/dummy/app/views/sites/index.html.erb
epom_rails-0.4.7 test/dummy/app/views/sites/index.html.erb
epom_rails-0.4.6 test/dummy/app/views/sites/index.html.erb
epom_rails-0.4.5 test/dummy/app/views/sites/index.html.erb
epom_rails-0.4.2 test/dummy/app/views/sites/index.html.erb
epom_rails-0.4.1 test/dummy/app/views/sites/index.html.erb