Sha256: 943dfb1145044ee5c68f9b030ebf98f61f71b646da5de1cdd04b52692e08c23c

Contents?: true

Size: 725 Bytes

Versions: 8

Compression:

Stored size: 725 Bytes

Contents

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

<h1>Listing Zones</h1>

<table>
  <thead>
    <tr>
      <th>Epom</th>
      <th>Name</th>
      <th>Description</th>
      <th>Site</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @zones.each do |zone| %>
      <tr>
        <td><%= zone.epom_id %></td>
        <td><%= zone.name %></td>
        <td><%= zone.description %></td>
        <td><%= zone.site_id %></td>
        <td><%= link_to 'Show', zone %></td>
        <td><%= link_to 'Edit', edit_zone_path(zone) %></td>
        <td><%= link_to 'Destroy', zone, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Zone', new_zone_path %>

Version data entries

8 entries across 8 versions & 1 rubygems

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