Added ability to delete IP addresses

This commit is contained in:
2022-12-22 13:08:35 -05:00
parent 2b6a222bcf
commit 57c5fb30c6
2 changed files with 11 additions and 0 deletions

View File

@ -8,6 +8,7 @@
<th>Address</th>
<th>DNS Name</th>
<th>Comments</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@ -16,6 +17,9 @@
<td><%= ip.address %></td>
<td><%= ip.dns_name %></td>
<td><%= ip.comment %></td>
<td>
<a href="/ip-tracker/delete/<%= ip.id %>"><i class="fa-solid fa-trash"></i></a>
</td>
</tr>
<% end %>
</tbody>