You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
595 B
29 lines
595 B
<p id="notice"><%= notice %></p>
|
|
|
|
<h1>Listing Hosts</h1>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Uri</th>
|
|
<th colspan="3"></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @hosts.each do |host| %>
|
|
<tr>
|
|
<td><%= host.name %></td>
|
|
<td><%= host.uri %></td>
|
|
<td><%= link_to 'Show', host %></td>
|
|
<td><%= link_to 'Edit', edit_host_path(host) %></td>
|
|
<td><%= link_to 'Destroy', host, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<%= link_to 'New host', new_host_path %>
|