kissingcomputer/app/views/sitemaps/index.html.erb
2026-01-10 16:17:07 +00:00

17 lines
408 B
Text

<h2>Sitemap</h2>
<% @sitemap.each do |sitemap| %>
<tr>
<td><%= sitemap.text %></td>
<% if current_user %>
<td><%= link_to 'Edit', edit_sitemap_path(sitemap) %></td>
<%= link_to "Delete",
sitemaps_path(@sitemap),
data: {
turbo_method: :delete,
turbo_confirm: "Are you sure?"
} %>
<% end %>
<% end %>