Sha256: 5aa5897dffc60316c7335df7b27364f6fc2499957d92340c3cf2dc8b775b8aec
Contents?: true
Size: 735 Bytes
Versions: 7
Compression:
Stored size: 735 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Listing Zones</h1> <table> <thead> <tr> <th>Epom</th> <th>Name</th> <th>Description</th> <th>Publisher</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.publisher_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
7 entries across 7 versions & 1 rubygems